Skip to content

Files

Latest commit

Taha Dhiaeddine AmdouniTaha Dhiaeddine Amdouni
Taha Dhiaeddine Amdouni
and
Taha Dhiaeddine Amdouni
Sep 20, 2017
1c4cfe1 · Sep 20, 2017

History

History
executable file
·
51 lines (29 loc) · 937 Bytes

File metadata and controls

executable file
·
51 lines (29 loc) · 937 Bytes

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