1.1.0 • Published 9 years ago

caroot v1.1.0

Weekly downloads
120
License
MIT
Repository
github
Last release
9 years ago

caroot

Replaces a caret with the root path (closest package.json)

Usage

caroot(caretedPath, currentPath, rootSubDirectory)

var caroot = require('caroot');

// assume we are 2 levels deeper than package.json

caroot('^foo', __dirname);

// returns '../../foo'


// also takes an optional root sub directory

caroot('^foo', __dirname, './scripts');

// returns '../foo'