mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 15:22:27 +00:00
![]() PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io> |
||
---|---|---|
.. | ||
index.js | ||
license | ||
package.json | ||
readme.md |
path-is-absolute 
Node.js 0.12
path.isAbsolute()
ponyfill
Ponyfill: A polyfill that doesn't overwrite the native method
Install
$ npm install --save path-is-absolute
Usage
var pathIsAbsolute = require('path-is-absolute');
// Linux
pathIsAbsolute('/home/foo');
//=> true
// Windows
pathIsAbsolute('C:/Users/');
//=> true
// Any OS
pathIsAbsolute.posix('/home/foo');
//=> true
API
See the path.isAbsolute()
docs.
pathIsAbsolute(path)
pathIsAbsolute.posix(path)
The Posix specific version.
pathIsAbsolute.win32(path)
The Windows specific version.
License
MIT © Sindre Sorhus