├── .eslintrc ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── babel.config.json ├── dist └── nested-property.js ├── index.d.ts ├── index.js ├── package.json └── test ├── get.spec.js ├── has.spec.js ├── hasOwn.spec.js ├── isIn.spec.js └── set.spec.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .idea 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/babel.config.json -------------------------------------------------------------------------------- /dist/nested-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/dist/nested-property.js -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/index.d.ts -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/package.json -------------------------------------------------------------------------------- /test/get.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/test/get.spec.js -------------------------------------------------------------------------------- /test/has.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/test/has.spec.js -------------------------------------------------------------------------------- /test/hasOwn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/test/hasOwn.spec.js -------------------------------------------------------------------------------- /test/isIn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/test/isIn.spec.js -------------------------------------------------------------------------------- /test/set.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmosio/nested-property/HEAD/test/set.spec.js --------------------------------------------------------------------------------