GoScrobble/web/node_modules/pkg-up/index.js

6 lines
170 B
JavaScript
Raw Permalink Normal View History

2022-04-25 02:47:15 +00:00
'use strict';
const findUp = require('find-up');
module.exports = cwd => findUp('package.json', {cwd});
module.exports.sync = cwd => findUp.sync('package.json', {cwd});