├── .eslintrc ├── .github └── workflows │ └── codeql-analysis.yml ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── index.d.ts ├── lib └── index.js ├── package.json └── test ├── .eslintrc ├── dot-prop-immutable-merge.spec.js ├── dot-prop-immutable-number.spec.js ├── dot-prop-immutable-toggle.spec.js ├── dot-prop-immutable.spec.js ├── eslint.spec.js ├── examples.spec.js ├── globals.js └── mocha.opts /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store 3 | .idea 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | .gitignore 3 | .eslintrc 4 | .travis.yml -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/README.md -------------------------------------------------------------------------------- /index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/index.d.ts -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/dot-prop-immutable-merge.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/dot-prop-immutable-merge.spec.js -------------------------------------------------------------------------------- /test/dot-prop-immutable-number.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/dot-prop-immutable-number.spec.js -------------------------------------------------------------------------------- /test/dot-prop-immutable-toggle.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/dot-prop-immutable-toggle.spec.js -------------------------------------------------------------------------------- /test/dot-prop-immutable.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/dot-prop-immutable.spec.js -------------------------------------------------------------------------------- /test/eslint.spec.js: -------------------------------------------------------------------------------- 1 | require('mocha-eslint')([ 2 | 'src', 3 | 'test' 4 | ]); -------------------------------------------------------------------------------- /test/examples.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/examples.spec.js -------------------------------------------------------------------------------- /test/globals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/globals.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/debitoor/dot-prop-immutable/HEAD/test/mocha.opts --------------------------------------------------------------------------------