locator icon indicating copy to clipboard operation
locator copied to clipboard

A node module that gives semantic meaning to filesystem paths.

Results 2 locator issues
Sort by recently updated
recently updated
newest added

``` // locator initialization var locator = new Locator({ buildDirectory: 'build' }); locator.plug(pluginOne()) .plug(pluginTwo()) .plug(pluginThree()) .parseBundle(__dirname, {}); locator.ready.then(function(have) { // do something... }); ``` this will facilitate passing locator instance...

enhancement

### Example of stacktrace: ``` bash ~\locator>npm test > [email protected] pretest ~\locator > jshint --config ./node_modules/yui-lint/jshint.json ./lib/ tests/lib/ > [email protected] test ~\locator > mocha tests/lib/parseBundle.js --reporter spec BundleLocator.parseBundle() 1) parseBundle()...