├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── copy.js ├── esm ├── behaviors.js └── index.js ├── index.js ├── min.js ├── package.json ├── poly.js ├── rollup ├── index.config.js ├── min.config.js └── poly.config.js └── test ├── index.html ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | coverage/ 4 | node_modules/ 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/README.md -------------------------------------------------------------------------------- /copy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/copy.js -------------------------------------------------------------------------------- /esm/behaviors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/esm/behaviors.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/package.json -------------------------------------------------------------------------------- /poly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/poly.js -------------------------------------------------------------------------------- /rollup/index.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/rollup/index.config.js -------------------------------------------------------------------------------- /rollup/min.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/rollup/min.config.js -------------------------------------------------------------------------------- /rollup/poly.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/rollup/poly.config.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/p-cool/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- 1 | require('../cjs'); -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} --------------------------------------------------------------------------------