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.
molleindustria f8eb18c202 Likelike online Omoma version
Added modding functions and examples of room specific behavior in (clientMod and serverMod).

Basic structures for NPC, semi-permanent objects, room-based soundtrack.

Refactor sprite drawing - now called "things" and stored in and object
4 years ago
..
index.js Likelike online Omoma version 4 years ago
license Likelike online Omoma version 4 years ago
package.json Likelike online Omoma version 4 years ago
readme.md Likelike online Omoma version 4 years ago

readme.md

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