chensenlai 10988628a0 语音房项目初始化 | vor 5 Jahren | |
---|---|---|
.. | ||
index.js | vor 5 Jahren | |
license | vor 5 Jahren | |
package.json | vor 5 Jahren | |
readme.md | vor 5 Jahren |
Node.js 0.12
path.isAbsolute()
ponyfillPonyfill: 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