mirror of
https://github.com/Tria-plc/emaui.git
synced 2026-08-26 19:12:50 +00:00
7 lines
164 B
JavaScript
7 lines
164 B
JavaScript
'use strict';
|
|
|
|
const find = require('find-file-up');
|
|
|
|
module.exports = find.bind(null, 'package.json');
|
|
module.exports.sync = find.sync.bind(null, 'package.json');
|