wallet-core/node_modules/pkg-dir/index.js

11 lines
297 B
JavaScript
Raw Normal View History

2017-05-28 00:38:50 +02:00
'use strict';
2017-08-14 05:01:11 +02:00
const path = require('path');
const findUp = require('find-up');
2017-05-28 00:38:50 +02:00
2017-08-14 05:01:11 +02:00
module.exports = cwd => findUp('package.json', {cwd}).then(fp => fp ? path.dirname(fp) : null);
2017-05-28 00:38:50 +02:00
2017-08-14 05:01:11 +02:00
module.exports.sync = cwd => {
const fp = findUp.sync('package.json', {cwd});
2017-05-28 00:38:50 +02:00
return fp ? path.dirname(fp) : null;
};