Repository URL to install this package:
Version:
1.9.1-1486597190 ▾
|
.. |
index.js |
package.json |
license |
readme.md |
Node.js 0.12
path.isAbsolute()
ponyfill
Ponyfill: A polyfill that doesn't overwrite the native method
$ npm install --save path-is-absolute
var pathIsAbsolute = require('path-is-absolute'); // Linux pathIsAbsolute('/home/foo'); //=> true // Windows pathIsAbsolute('C:/Users/'); //=> true // Any OS pathIsAbsolute.posix('/home/foo'); //=> true
See the path.isAbsolute()
docs.
The Posix specific version.
The Windows specific version.
MIT © Sindre Sorhus