mirror of
https://github.com/henrywhitaker3/Speedtest-Tracker.git
synced 2025-12-24 22:39:26 +01:00
6 lines
170 B
JavaScript
Vendored
6 lines
170 B
JavaScript
Vendored
'use strict';
|
|
const findUp = require('find-up');
|
|
|
|
module.exports = cwd => findUp('package.json', {cwd});
|
|
module.exports.sync = cwd => findUp.sync('package.json', {cwd});
|