path-is-absolute (1.0.1)

Published 2026-02-24 14:02:30 +00:00 by atheaadmin

Installation

registry=
npm install path-is-absolute@1.0.1
"path-is-absolute": "1.0.1"

About this package

path-is-absolute Build Status

Node.js 0.12 path.isAbsolute() ponyfill

Install

$ npm install --save path-is-absolute

Usage

const pathIsAbsolute = require('path-is-absolute');

// Running on Linux
pathIsAbsolute('/home/foo');
//=> true
pathIsAbsolute('C:/Users/foo');
//=> false

// Running on Windows
pathIsAbsolute('C:/Users/foo');
//=> true
pathIsAbsolute('/home/foo');
//=> false

// Running on any OS
pathIsAbsolute.posix('/home/foo');
//=> true
pathIsAbsolute.posix('C:/Users/foo');
//=> false
pathIsAbsolute.win32('C:/Users/foo');
//=> true
pathIsAbsolute.win32('/home/foo');
//=> false

API

See the path.isAbsolute() docs.

pathIsAbsolute(path)

pathIsAbsolute.posix(path)

POSIX specific version.

pathIsAbsolute.win32(path)

Windows specific version.

License

MIT © Sindre Sorhus

Dependencies

Development Dependencies

ID Version
xo ^0.16.0

Keywords

path paths file dir absolute isabsolute is-absolute built-in util utils core ponyfill polyfill shim is detect check
Details
npm
2026-02-24 14:02:30 +00:00
1
Sindre Sorhus
MIT
latest
1.8 KiB
Assets (1)
Versions (1) View all
1.0.1 2026-02-24