Sha256: 85643e13de77213831aea57dac009638a9dea5baaa85a964c2592f602234db68

Contents?: true

Size: 534 Bytes

Versions: 108

Compression:

Stored size: 534 Bytes

Contents

const { dirname, resolve } = require('path');
const { readdir, stat } = require('fs');
const { promisify } = require('util');

const toStats = promisify(stat);
const toRead = promisify(readdir);

module.exports = async function (start, callback) {
	let dir = resolve('.', start);
	let tmp, stats = await toStats(dir);

	if (!stats.isDirectory()) {
		dir = dirname(dir);
	}

	while (true) {
		tmp = await callback(dir, await toRead(dir));
		if (tmp) return resolve(dir, tmp);
		dir = dirname(tmp = dir);
		if (tmp === dir) break;
	}
}

Version data entries

108 entries across 107 versions & 14 rubygems

Version Path
reed_sdk-1.0.0 node_modules/escalade/dist/index.js
boring_generators-0.12.0 tmp/templates/app_template/node_modules/escalade/dist/index.js
epuber-stylus-source-0.56.0 vendor/node_modules/escalade/dist/index.js
appmap-0.72.2 ./node_modules/escalade/dist/index.js
appmap-0.72.1 ./node_modules/escalade/dist/index.js
appmap-0.72.0 ./node_modules/escalade/dist/index.js
appmap-0.71.0 ./node_modules/escalade/dist/index.js
disco_app-0.16.1 test/dummy/node_modules/escalade/dist/index.js
appmap-0.70.2 ./node_modules/escalade/dist/index.js
appmap-0.70.1 ./node_modules/escalade/dist/index.js
appmap-0.70.0 ./node_modules/escalade/dist/index.js
appmap-0.69.0 ./node_modules/escalade/dist/index.js
appmap-0.68.2 ./node_modules/escalade/dist/index.js
appmap-0.68.1 ./node_modules/escalade/dist/index.js
disco_app-0.15.2 test/dummy/node_modules/escalade/dist/index.js
appmap-0.68.0 ./node_modules/escalade/dist/index.js
appmap-0.67.1 ./node_modules/escalade/dist/index.js
appmap-0.67.0 ./node_modules/escalade/dist/index.js
disco_app-0.18.4 test/dummy/node_modules/escalade/dist/index.js
disco_app-0.18.1 test/dummy/node_modules/escalade/dist/index.js