File size: 522 Bytes
bc20498 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 |
# path-posix
posix-specific core path module
## usage
```js
var path = require('path-posix')
path.resolve(__dirname, 'foo')
```
Extracted from lib/path.js in joyent/node@31d4847d8b18cf487775dee3471dd4653b7d860b (master as of 2015/01/26)
## api
see [http://nodejs.org/api/path.html#path_path_resolve_from_to](http://nodejs.org/api/path.html#path_path_resolve_from_to)
## installation
$ npm install path-posix
## running the tests
From package root:
$ npm install
$ npm test
## license
See LICENSE.md |