├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── cjs ├── index.js └── package.json ├── es.js ├── esm └── index.js ├── index.js ├── min.js ├── package.json ├── rollup ├── babel.config.js └── es.config.js └── test └── index.html /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | node_modules/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .nyc_output 3 | .travis.yml 4 | node_modules/ 5 | rollup/ 6 | test/ 7 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/README.md -------------------------------------------------------------------------------- /cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/cjs/index.js -------------------------------------------------------------------------------- /cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/es.js -------------------------------------------------------------------------------- /esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/esm/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/index.js -------------------------------------------------------------------------------- /min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/package.json -------------------------------------------------------------------------------- /rollup/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/rollup/babel.config.js -------------------------------------------------------------------------------- /rollup/es.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/rollup/es.config.js -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebReflection/once-defined/HEAD/test/index.html --------------------------------------------------------------------------------