├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── cjs ├── index.js └── package.json ├── esm └── index.js ├── index.js ├── min.js ├── new.js ├── package.json ├── rollup ├── babel.config.js └── new.config.js └── test └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | node_modules/ 3 | package-lock.json 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/min.js -------------------------------------------------------------------------------- /new.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/new.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/package.json -------------------------------------------------------------------------------- /rollup/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/rollup/babel.config.js -------------------------------------------------------------------------------- /rollup/new.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/rollup/new.config.js -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/assign-properties/HEAD/test/index.js --------------------------------------------------------------------------------