You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
Skylar Ittner 26a41c1833 Fix crap 8 years ago
..
index.js Fix crap 8 years ago
license Fix crap 8 years ago
package.json Fix crap 8 years ago
readme.md Fix crap 8 years ago

readme.md

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