├── .editorconfig ├── .eslintrc.json ├── .gitattributes ├── .gitignore ├── .npmrc ├── .travis.yml ├── .verb.md ├── CHANGELOG.md ├── LICENSE ├── README.md ├── benchmark ├── code │ ├── current.js │ ├── no-regex.js │ ├── node-path.js │ ├── regex.js │ ├── slice-trailing.js │ ├── split.js │ ├── v2.js │ └── while.js ├── fixtures │ ├── long.js │ ├── short.js │ ├── single.js │ ├── trailing.js │ ├── unix.js │ ├── win.js │ └── win32-namespace.js ├── index.js └── package.json ├── bower.json ├── example.js ├── index.js ├── package.json └── test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/.travis.yml -------------------------------------------------------------------------------- /.verb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/.verb.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/README.md -------------------------------------------------------------------------------- /benchmark/code/current.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../..'); -------------------------------------------------------------------------------- /benchmark/code/no-regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/code/no-regex.js -------------------------------------------------------------------------------- /benchmark/code/node-path.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/code/node-path.js -------------------------------------------------------------------------------- /benchmark/code/regex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/code/regex.js -------------------------------------------------------------------------------- /benchmark/code/slice-trailing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/code/slice-trailing.js -------------------------------------------------------------------------------- /benchmark/code/split.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/code/split.js -------------------------------------------------------------------------------- /benchmark/code/v2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/code/v2.js -------------------------------------------------------------------------------- /benchmark/code/while.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/code/while.js -------------------------------------------------------------------------------- /benchmark/fixtures/long.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/fixtures/long.js -------------------------------------------------------------------------------- /benchmark/fixtures/short.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/fixtures/short.js -------------------------------------------------------------------------------- /benchmark/fixtures/single.js: -------------------------------------------------------------------------------- 1 | module.exports = ['\\']; -------------------------------------------------------------------------------- /benchmark/fixtures/trailing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/fixtures/trailing.js -------------------------------------------------------------------------------- /benchmark/fixtures/unix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/fixtures/unix.js -------------------------------------------------------------------------------- /benchmark/fixtures/win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/fixtures/win.js -------------------------------------------------------------------------------- /benchmark/fixtures/win32-namespace.js: -------------------------------------------------------------------------------- 1 | module.exports = ['\\\\.\\PhysicalDiskX']; -------------------------------------------------------------------------------- /benchmark/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/index.js -------------------------------------------------------------------------------- /benchmark/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/benchmark/package.json -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/bower.json -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/example.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jonschlinkert/normalize-path/HEAD/test.js --------------------------------------------------------------------------------