node-path-extras

0.4.1 • Public • Published

node-path-extras

extra utilities for path module of nodejs

API

path.contains(mainPath, subPath)

  var path = require('node-path-extras');
  console.log(path.contains('/a', '/a/b')); // true

path.within(subPath, mainPath)

opposite to path.contains

  var path = require('node-path-extras');
  console.log(path.within('/a/b', '/a')); // true

path.along(aPath, bPath /.../)

alias path.inpath

  var path = require('node-path-extras');
  console.log(path.along('/a/b/c', '/a/b', '/a/b/c/d')); // true

path.isRelative(aPath)

  var path = require('node-path-extras');
  console.log(path.isRelative('../a')); // true
  console.log(path.isRelative('/a'));   // false

path.isAbsolute(aPath)

  var path = require('node-path-extras');
  console.log(path.isAbsolute('../a')); // false
  console.log(path.isAbsolute('/a'));   // true
 
  // for windows
  console.log(path.isAbsolute('c:\a')); // true

path.unique(arr)

remove paths in the same route in an array

  var path = require('node-path-extras');
  console.log(path.unique(['/a/b', '/a', '/c'])); // ['/a', '/c']

Readme

Keywords

Package Sidebar

Install

npm i node-path-extras

Weekly Downloads

7

Version

0.4.1

License

none

Last publish

Collaborators

  • luckydrq