PIbd-21_Danilov_V.V._Intern.../Lab4/node_modules/eslint-module-utils/pkgDir.js

12 lines
222 B
JavaScript
Raw Permalink Normal View History

2024-01-09 05:30:48 +04: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;
};