https://github.com/dfkaye/simple-path-normalize
JavaScript kata for pathname resolutions when given a pathname string containing '.' and '..' ~ should return normalized directory pathname.
https://github.com/dfkaye/simple-path-normalize
Last synced: 5 months ago
JSON representation
JavaScript kata for pathname resolutions when given a pathname string containing '.' and '..' ~ should return normalized directory pathname.
- Host: GitHub
- URL: https://github.com/dfkaye/simple-path-normalize
- Owner: dfkaye
- Created: 2013-02-27T06:34:30.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-05-24T23:46:00.000Z (over 12 years ago)
- Last Synced: 2025-02-21T20:16:41.648Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 237 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
simple-path-normalize
=====================
JavaScript attempt at fixing/understanding pathname resolutions when given a
pathname string containing '.' and '..' ~ should return normalized directory
pathname. If path has a URI scheme, this should be preserved.
tape & testling
===============
Using [tape](https://github.com/substack/tape) to run tests from the node.js
command line, and in order to use [testling](http://ci.testling.com/) from the
github service hook.
[](https://ci.testling.com/dfkaye/simple-path-normalize)
[Things I've found about checking things in for testling to work](https://gist.github.com/dfkaye/5225546)
__from the command line__
cd ./simple-path-normalize
npm test
or
node test/suite.js
npm
============
___TODO___