node/tools/eslint/node_modules/path-is-absolute
Rich Trott d7ce99214d tools: update ESLint, fix unused vars bug
Update ESLint to 3.0.0. This includes an enhancement to `no-unused-vars`
such that it finds a few instances in our code base that it did not find
previously (fixed in previous commits readying this for landing).

PR-URL: https://github.com/nodejs/node/pull/7601
Reviewed-By: Michaël Zasso <mic.besace@gmail.com>
Reviewed-By: Roman Reiss <me@silverwind.io>
2016-07-14 12:44:58 -07:00
..
index.js tools: update eslint to 0.24.0 2015-06-29 19:02:17 +02:00
license tools: update eslint to 0.24.0 2015-06-29 19:02:17 +02:00
package.json tools: update ESLint, fix unused vars bug 2016-07-14 12:44:58 -07:00
readme.md tools: update eslint to 0.24.0 2015-06-29 19:02:17 +02:00

path-is-absolute Build Status

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