mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-06 18:03:03 +02:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
'use strict';
|
|
exports.__esModule = true;
|
|
|
|
const findUp = require('find-up');
|
|
|
|
exports.default = function pkgUp(opts) {
|
|
return findUp.sync('package.json', opts);
|
|
};
|