Sha256: 8661c367be253a559e8cbcae21192e8520b1513b421a1f383558ec4d88c03698

Contents?: true

Size: 1.3 KB

Versions: 53

Compression:

Stored size: 1.3 KB

Contents

'use strict';
const path = require('path');
const fs = require('fs');
const {promisify} = require('util');
const pLocate = require('p-locate');

const fsStat = promisify(fs.stat);
const fsLStat = promisify(fs.lstat);

const typeMappings = {
	directory: 'isDirectory',
	file: 'isFile'
};

function checkType({type}) {
	if (type in typeMappings) {
		return;
	}

	throw new Error(`Invalid type specified: ${type}`);
}

const matchType = (type, stat) => type === undefined || stat[typeMappings[type]]();

module.exports = async (paths, options) => {
	options = {
		cwd: process.cwd(),
		type: 'file',
		allowSymlinks: true,
		...options
	};
	checkType(options);
	const statFn = options.allowSymlinks ? fsStat : fsLStat;

	return pLocate(paths, async path_ => {
		try {
			const stat = await statFn(path.resolve(options.cwd, path_));
			return matchType(options.type, stat);
		} catch (_) {
			return false;
		}
	}, options);
};

module.exports.sync = (paths, options) => {
	options = {
		cwd: process.cwd(),
		allowSymlinks: true,
		type: 'file',
		...options
	};
	checkType(options);
	const statFn = options.allowSymlinks ? fs.statSync : fs.lstatSync;

	for (const path_ of paths) {
		try {
			const stat = statFn(path.resolve(options.cwd, path_));

			if (matchType(options.type, stat)) {
				return path_;
			}
		} catch (_) {
		}
	}
};

Version data entries

53 entries across 46 versions & 8 rubygems

Version Path
trusty-cms-6.3.1 node_modules/locate-path/index.js
optimacms-0.1.61 spec/dummy/node_modules/@rails/webpacker/node_modules/locate-path/index.js
optimacms-0.1.61 spec/dummy/node_modules/compression-webpack-plugin/node_modules/locate-path/index.js
trusty-cms-5.0.7 node_modules/locate-path/index.js
trusty-cms-5.0.6 node_modules/locate-path/index.js
trusty-cms-5.0.5 node_modules/locate-path/index.js
trusty-cms-5.0.4 node_modules/locate-path/index.js
disco_app-0.16.1 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.js
isomorfeus-puppetmaster-0.5.5 node_modules/locate-path/index.js
isomorfeus-puppetmaster-0.5.4 node_modules/locate-path/index.js
disco_app-0.15.2 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.js
isomorfeus-puppetmaster-0.5.3 node_modules/locate-path/index.js
trusty-cms-5.0.3 node_modules/locate-path/index.js
trusty-cms-5.0.2 node_modules/locate-path/index.js
disco_app-0.18.4 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.js
disco_app-0.18.1 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.js
disco_app-0.14.0 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/find-cache-dir/node_modules/locate-path/index.js
trusty-cms-5.0.1 node_modules/locate-path/index.js