source: trip-planner-front/node_modules/escalade/sync/index.mjs@ 6c1585f

Last change on this file since 6c1585f was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 404 bytes
Line 
1import { dirname, resolve } from 'path';
2import { readdirSync, statSync } from 'fs';
3
4export default function (start, callback) {
5 let dir = resolve('.', start);
6 let tmp, stats = statSync(dir);
7
8 if (!stats.isDirectory()) {
9 dir = dirname(dir);
10 }
11
12 while (true) {
13 tmp = callback(dir, readdirSync(dir));
14 if (tmp) return resolve(dir, tmp);
15 dir = dirname(tmp = dir);
16 if (tmp === dir) break;
17 }
18}
Note: See TracBrowser for help on using the repository browser.