odin-js-fundamentals-part-5/node_modules/eslint-module-utils/pkgDir.js

12 lines
222 B
JavaScript
Raw Normal View History

2024-01-11 08:52:05 +00:00
'use strict';
const path = require('path');
const pkgUp = require('./pkgUp').default;
exports.__esModule = true;
exports.default = function (cwd) {
const fp = pkgUp({ cwd });
return fp ? path.dirname(fp) : null;
};