├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── dist └── strclass.min.js ├── docs ├── lcov-report │ ├── base.css │ ├── index.html │ ├── index.js.html │ ├── prettify.css │ ├── prettify.js │ ├── sort-arrow-sprite.png │ └── sorter.js └── lcov.info ├── package.json ├── src └── index.js ├── test.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | .nyc_output 4 | coverage 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | docs 2 | test.js 3 | .travis.yml 4 | .nyc_output 5 | yarn.lock 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/README.md -------------------------------------------------------------------------------- /dist/strclass.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/dist/strclass.min.js -------------------------------------------------------------------------------- /docs/lcov-report/base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov-report/base.css -------------------------------------------------------------------------------- /docs/lcov-report/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov-report/index.html -------------------------------------------------------------------------------- /docs/lcov-report/index.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov-report/index.js.html -------------------------------------------------------------------------------- /docs/lcov-report/prettify.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov-report/prettify.css -------------------------------------------------------------------------------- /docs/lcov-report/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov-report/prettify.js -------------------------------------------------------------------------------- /docs/lcov-report/sort-arrow-sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov-report/sort-arrow-sprite.png -------------------------------------------------------------------------------- /docs/lcov-report/sorter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov-report/sorter.js -------------------------------------------------------------------------------- /docs/lcov.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/docs/lcov.info -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/src/index.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fdaciuk/strclass/HEAD/yarn.lock --------------------------------------------------------------------------------