├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── benchmark ├── for.js ├── index.js ├── indexOf.js ├── split.js └── utils.js ├── package.json ├── readme.md └── test └── specifiers.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/LICENSE -------------------------------------------------------------------------------- /benchmark/for.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/benchmark/for.js -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /benchmark/indexOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/benchmark/indexOf.js -------------------------------------------------------------------------------- /benchmark/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/benchmark/split.js -------------------------------------------------------------------------------- /benchmark/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/benchmark/utils.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/readme.md -------------------------------------------------------------------------------- /test/specifiers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/floatdrop/pff/HEAD/test/specifiers.js --------------------------------------------------------------------------------