Files
est-frame/node_modules/pkg-up/index.js
2025-10-22 05:38:27 +00:00

6 lines
194 B
JavaScript
Executable File

'use strict';
const findUp = require('find-up');
module.exports = async ({cwd} = {}) => findUp('package.json', {cwd});
module.exports.sync = ({cwd} = {}) => findUp.sync('package.json', {cwd});