pax_global_header00006660000000000000000000000064132330435210014506gustar00rootroot0000000000000052 comment=b86d09ffdb7c98613459ac706dcbde294b8c64e3 has-own-deep-1.1.0/000077500000000000000000000000001323304352100137745ustar00rootroot00000000000000has-own-deep-1.1.0/.editorconfig000066400000000000000000000004411323304352100164500ustar00rootroot00000000000000# http://editorconfig.org/ root = true [*] charset = utf-8 end_of_line = lf indent_size = 2 indent_style = space insert_final_newline = true trim_trailing_whitespace = true [{**/{actual,fixtures,expected,templates}/**,*.md}] trim_trailing_whitespace = false insert_final_newline = false has-own-deep-1.1.0/.eslintrc.json000066400000000000000000000067751323304352100166070ustar00rootroot00000000000000{ "env": { "browser": false, "es6": true, "node": true, "mocha": true }, "globals": { "document": false, "navigator": false, "window": false }, "rules": { "accessor-pairs": 2, "arrow-spacing": [2, { "before": true, "after": true }], "block-spacing": [2, "always"], "brace-style": [2, "1tbs", { "allowSingleLine": true }], "comma-dangle": [2, "never"], "comma-spacing": [2, { "before": false, "after": true }], "comma-style": [2, "last"], "constructor-super": 2, "curly": [2, "multi-line"], "dot-location": [2, "property"], "eol-last": 2, "eqeqeq": [2, "allow-null"], "generator-star-spacing": [2, { "before": true, "after": true }], "handle-callback-err": [2, "^(err|error)$" ], "indent": [2, 2, { "SwitchCase": 1 }], "key-spacing": [2, { "beforeColon": false, "afterColon": true }], "keyword-spacing": [2, { "before": true, "after": true }], "new-cap": [2, { "newIsCap": true, "capIsNew": false }], "new-parens": 2, "no-array-constructor": 2, "no-caller": 2, "no-class-assign": 2, "no-cond-assign": 2, "no-const-assign": 2, "no-control-regex": 2, "no-debugger": 2, "no-delete-var": 2, "no-dupe-args": 2, "no-dupe-class-members": 2, "no-dupe-keys": 2, "no-duplicate-case": 2, "no-empty-character-class": 2, "no-eval": 2, "no-ex-assign": 2, "no-extend-native": 2, "no-extra-bind": 2, "no-extra-boolean-cast": 2, "no-extra-parens": [2, "functions"], "no-fallthrough": 2, "no-floating-decimal": 2, "no-func-assign": 2, "no-implied-eval": 2, "no-inner-declarations": [2, "functions"], "no-invalid-regexp": 2, "no-irregular-whitespace": 2, "no-iterator": 2, "no-label-var": 2, "no-labels": 2, "no-lone-blocks": 2, "no-mixed-spaces-and-tabs": 2, "no-multi-spaces": 2, "no-multi-str": 2, "no-multiple-empty-lines": [2, { "max": 1 }], "no-native-reassign": 0, "no-negated-in-lhs": 2, "no-new": 2, "no-new-func": 2, "no-new-object": 2, "no-new-require": 2, "no-new-wrappers": 2, "no-obj-calls": 2, "no-octal": 2, "no-octal-escape": 2, "no-proto": 0, "no-redeclare": 2, "no-regex-spaces": 2, "no-return-assign": 2, "no-self-compare": 2, "no-sequences": 2, "no-shadow-restricted-names": 2, "no-spaced-func": 2, "no-sparse-arrays": 2, "no-this-before-super": 2, "no-throw-literal": 2, "no-trailing-spaces": 0, "no-undef": 2, "no-undef-init": 2, "no-unexpected-multiline": 2, "no-unneeded-ternary": [2, { "defaultAssignment": false }], "no-unreachable": 2, "no-unused-vars": [2, { "vars": "all", "args": "none" }], "no-useless-call": 0, "no-with": 2, "one-var": [0, { "initialized": "never" }], "operator-linebreak": [0, "after", { "overrides": { "?": "before", ":": "before" } }], "padded-blocks": [0, "never"], "quotes": [2, "single", "avoid-escape"], "radix": 2, "semi": [2, "always"], "semi-spacing": [2, { "before": false, "after": true }], "space-before-blocks": [2, "always"], "space-before-function-paren": [2, "never"], "space-in-parens": [2, "never"], "space-infix-ops": 2, "space-unary-ops": [2, { "words": true, "nonwords": false }], "spaced-comment": [0, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }], "use-isnan": 2, "valid-typeof": 2, "wrap-iife": [2, "any"], "yoda": [2, "never"] } } has-own-deep-1.1.0/.gitattributes000066400000000000000000000001771323304352100166740ustar00rootroot00000000000000# Enforce Unix newlines * text eol=lf # binaries *.ai binary *.psd binary *.jpg binary *.gif binary *.png binary *.jpeg binaryhas-own-deep-1.1.0/.gitignore000066400000000000000000000004561323304352100157710ustar00rootroot00000000000000# always ignore files *.DS_Store .idea .vscode *.sublime-* # test related, or directories generated by tests test/actual actual coverage .nyc* # npm node_modules npm-debug.log # yarn yarn.lock yarn-error.log # misc _gh_pages _draft _drafts bower_components vendor temp tmp TODO.md package-lock.jsonhas-own-deep-1.1.0/.travis.yml000066400000000000000000000001461323304352100161060ustar00rootroot00000000000000sudo: false os: - linux - osx language: node_js node_js: - node - '9' - '8' - '7' - '6' has-own-deep-1.1.0/.verb.md000066400000000000000000000012731323304352100153350ustar00rootroot00000000000000## Usage ```js const hasOwnDeep = require('{%= name %}'); const obj = { a: { b: { c: 'd' } } }; console.log(hasOwnDeep(obj, 'a')); //=> true console.log(hasOwnDeep(obj, 'a.b')); //=> true console.log(hasOwnDeep(obj, 'a.b.c')); //=> true console.log(hasOwnDeep(obj, 'c')); //=> false console.log(hasOwnDeep(obj, 'a.c')); //=> false console.log(hasOwnDeep(obj, 'a.b.d')); //=> false ``` ## Keys with dots Should correctly detect deeply nested keys that have dots in them. ```js console.log(hasOwnDeep({ 'a.b.c': 'd' }, 'a.b.c')); //=> true console.log(hasOwnDeep({ 'a.b': { c: 'd' } }, 'a.b.c')); //=> true console.log(hasOwnDeep({ a: { 'b.c': 'd' } }, 'a.b.c')); //=> true ``` has-own-deep-1.1.0/LICENSE000066400000000000000000000021001323304352100147720ustar00rootroot00000000000000The MIT License (MIT) Copyright (c) 2015-2018, Jon Schlinkert. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. has-own-deep-1.1.0/README.md000066400000000000000000000056711323304352100152640ustar00rootroot00000000000000# has-own-deep [![NPM version](https://img.shields.io/npm/v/has-own-deep.svg?style=flat)](https://www.npmjs.com/package/has-own-deep) [![NPM monthly downloads](https://img.shields.io/npm/dm/has-own-deep.svg?style=flat)](https://npmjs.org/package/has-own-deep) [![NPM total downloads](https://img.shields.io/npm/dt/has-own-deep.svg?style=flat)](https://npmjs.org/package/has-own-deep) [![Linux Build Status](https://img.shields.io/travis/jonschlinkert/has-own-deep.svg?style=flat&label=Travis)](https://travis-ci.org/jonschlinkert/has-own-deep) > Returns true if an object has an own, nested property using dot notation paths ('a.b.c'). Please consider following this project's author, [Jon Schlinkert](https://github.com/jonschlinkert), and consider starring the project to show your :heart: and support. ## Install Install with [npm](https://www.npmjs.com/): ```sh $ npm install --save has-own-deep ``` ## Usage ```js const hasOwnDeep = require('has-own-deep'); const obj = { a: { b: { c: 'd' } } }; console.log(hasOwnDeep(obj, 'a')); //=> true console.log(hasOwnDeep(obj, 'a.b')); //=> true console.log(hasOwnDeep(obj, 'a.b.c')); //=> true console.log(hasOwnDeep(obj, 'c')); //=> false console.log(hasOwnDeep(obj, 'a.c')); //=> false console.log(hasOwnDeep(obj, 'a.b.d')); //=> false ``` ## Keys with dots Should correctly detect deeply nested keys that have dots in them. ```js console.log(hasOwnDeep({ 'a.b.c': 'd' }, 'a.b.c')); //=> true console.log(hasOwnDeep({ 'a.b': { c: 'd' } }, 'a.b.c')); //=> true console.log(hasOwnDeep({ a: { 'b.c': 'd' } }, 'a.b.c')); //=> true ``` ## About
Contributing Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new).
Running Tests Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: ```sh $ npm install && npm test ```
Building docs _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ To generate the readme, run the following command: ```sh $ npm install -g verbose/verb#dev verb-generate-readme && verb ```
### Author **Jon Schlinkert** * [linkedin/in/jonschlinkert](https://linkedin.com/in/jonschlinkert) * [github/jonschlinkert](https://github.com/jonschlinkert) * [twitter/jonschlinkert](https://twitter.com/jonschlinkert) ### License Copyright © 2018, [Jon Schlinkert](https://github.com/jonschlinkert). Released under the [MIT License](LICENSE). *** _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on January 26, 2018._has-own-deep-1.1.0/index.js000066400000000000000000000022331323304352100154410ustar00rootroot00000000000000/*! * has-own-deep * * Copyright (c) 2015-2018, Jon Schlinkert. * Released under the MIT License. */ 'use strict'; const hasOwn = Object.prototype.hasOwnProperty; const isObject = require('isobject'); module.exports = function(target, path) { if (!isObject(target) && !Array.isArray(target)) { throw new TypeError('expected the first argument to be an object or array'); } if (typeof path !== 'string') { throw new TypeError('expected object path to be a string'); } if (hasOwn.call(target, path)) { return true; } let segs = Array.isArray(path) ? path : path.split(/\\?\./); let obj = target; while ((isObject(obj) || Array.isArray(obj)) && segs.length) { if (hasOwn.call(obj, segs[0])) { obj = obj[segs.shift()]; continue; } let rest = segs.slice(); let has = false; do { const prop = rest.join('.'); if ((has = hasOwn.call(obj, prop))) { segs = segs.slice(rest.length); obj = obj[prop]; break; } rest.pop(); } while (rest.length); if (!has) { return false; } } return true; }; has-own-deep-1.1.0/package.json000066400000000000000000000021221323304352100162570ustar00rootroot00000000000000{ "name": "has-own-deep", "description": "Returns true if an object has an own, nested property using dot notation paths ('a.b.c').", "version": "1.1.0", "homepage": "https://github.com/jonschlinkert/has-own-deep", "author": "Jon Schlinkert (https://github.com/jonschlinkert)", "repository": "jonschlinkert/has-own-deep", "bugs": { "url": "https://github.com/jonschlinkert/has-own-deep/issues" }, "license": "MIT", "files": [ "index.js" ], "main": "index.js", "engines": { "node": ">=6.0" }, "scripts": { "test": "mocha" }, "dependencies": { "isobject": "^3.0.1" }, "devDependencies": { "gulp-format-md": "^1.0.0", "mocha": "^3.5.3" }, "keywords": [ "check", "deep", "dot", "has", "has-own", "key", "keys", "nested", "notation", "object", "own", "paths", "prop", "property", "value" ], "verb": { "toc": false, "layout": "default", "tasks": [ "readme" ], "plugins": [ "gulp-format-md" ], "lint": { "reflinks": true } } } has-own-deep-1.1.0/test.js000066400000000000000000000103341323304352100153120ustar00rootroot00000000000000/*! * has-own-deep * * Copyright (c) 2015-2018, Jon Schlinkert. * Licensed under the MIT License. */ 'use strict'; require('mocha'); const assert = require('assert'); const hasOwnDeep = require('./'); describe('hasOwnDeep', function() { it('should throw an error when the first argument is not an object', function() { assert.throws(() => hasOwnDeep(undefined, 'a'), /object or array/); assert.throws(() => hasOwnDeep(null, 'a'), /object or array/); }); it('should throw an error when the second argument is not a string', function() { assert.throws(() => hasOwnDeep({}), /string/); assert.throws(() => hasOwnDeep({}, {}), /string/); }); it('should return true when key is an own property of the given object', function() { assert(hasOwnDeep({ a: 'b' }, 'a')); }); it('should return true a nested key is an own property of the given object', function() { assert(hasOwnDeep({ a: { b: { c: 'd' } } }, 'a')); assert(hasOwnDeep({ a: { b: { c: 'd' } } }, 'a.b')); assert(hasOwnDeep({ a: { b: { c: 'd' } } }, 'a.b.c')); }); it('should support nested keys with dots in them', function() { assert(hasOwnDeep({ 'a.b.c': 'd' }, 'a.b.c')); assert(hasOwnDeep({ 'a.b': { c: 'd' } }, 'a.b.c')); assert(hasOwnDeep({ 'a': { b: { c: 'd' } } }, 'a.b.c')); assert(hasOwnDeep({ 'a': { 'b.c': 'd' } }, 'a.b.c')); assert(!hasOwnDeep({ 'a.b.c.d': 'e' }, 'a.b.c')); assert(hasOwnDeep({ 'a.b.c.d.e.f': 'g' }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b.c.d.e': { f: 'g' } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b.c.d': { e: { f: 'g' } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b.c': { d: { e: { f: 'g' } } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b': { c: { d: { e: { f: 'g' } } } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a': { b: { c: { d: { e: { f: 'g' } } } } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b.c.d.e': { 'f': 'g' } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b.c.d': { 'e.f': 'g' } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b.c': { 'd.e.f': 'g' } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b': { 'c.d.e.f': 'g' } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a': { 'b.c.d.e.f': 'g' } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b': { 'c.d': { 'e.f': 'g' } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a.b': { 'c': { 'd.e.f': 'g' } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a': { 'b.c.d.e': { 'f': 'g' } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a': { 'b.c.d': { 'e.f': 'g' } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a': { 'b.c': { 'd.e.f': 'g' } } }, 'a.b.c.d.e.f')); assert(hasOwnDeep({ 'a': { 'b': { 'c.d.e.f': 'g' } } }, 'a.b.c.d.e.f')); }); it('should respect keys escaped with slashes', function() { assert(hasOwnDeep({ 'a.b': 'c' }, 'a\\.b')); assert(hasOwnDeep({ 'a.b.c': 'd' }, 'a\\.b\\.c')); }); it('should work with falsey values', function() { assert(hasOwnDeep({ a: { b: { c: '' } } }, 'a')); assert(hasOwnDeep({ a: { b: { c: '' } } }, 'a.b')); assert(hasOwnDeep({ a: { b: { c: '' } } }, 'a.b.c')); assert(hasOwnDeep({ a: { b: { c: 0 } } }, 'a')); assert(hasOwnDeep({ a: { b: { c: 0 } } }, 'a.b')); assert(hasOwnDeep({ a: { b: { c: 0 } } }, 'a.b.c')); assert(hasOwnDeep({ a: { b: { c: false } } }, 'a')); assert(hasOwnDeep({ a: { b: { c: false } } }, 'a.b')); assert(hasOwnDeep({ a: { b: { c: false } } }, 'a.b.c')); assert(hasOwnDeep({ a: { b: { c: null } } }, 'a')); assert(hasOwnDeep({ a: { b: { c: null } } }, 'a.b')); assert(hasOwnDeep({ a: { b: { c: null } } }, 'a.b.c')); assert(hasOwnDeep({ a: { b: { c: undefined } } }, 'a')); assert(hasOwnDeep({ a: { b: { c: undefined } } }, 'a.b')); assert(hasOwnDeep({ a: { b: { c: undefined } } }, 'a.b.c')); }); it('should return false when a nested key is not an own property of the given object', function() { assert(!hasOwnDeep({ a: { b: { c: 'd' } } }, 'a.b.d')); assert(!hasOwnDeep({ a: { b: { c: 'd' } } }, 'a.c')); assert(!hasOwnDeep({ a: { b: { c: 'd' } } }, 'a.e.c')); assert(!hasOwnDeep({ a: { b: { c: 'd' } } }, 'c')); assert(!hasOwnDeep({ a: { b: { c: 'd' } } }, 'c.c')); assert(!hasOwnDeep({ a: { b: { c: 'd' } } }, 'z.b.c')); }); });