Sha256: 57c27802e01b5400442505a201934274451e5fbdebf5e890d9287657368be0a9

Contents?: true

Size: 951 Bytes

Versions: 38

Compression:

Stored size: 951 Bytes

Contents

'use strict';
var path = require('path');
var pathExists = require('path-exists');
var Promise = require('pinkie-promise');

function splitPath(x) {
	return path.resolve(x || '').split(path.sep);
}

function join(parts, filename) {
	return path.resolve(parts.join(path.sep) + path.sep, filename);
}

module.exports = function (filename, opts) {
	opts = opts || {};

	var parts = splitPath(opts.cwd);

	return new Promise(function (resolve) {
		(function find() {
			var fp = join(parts, filename);

			pathExists(fp).then(function (exists) {
				if (exists) {
					resolve(fp);
				} else if (parts.pop()) {
					find();
				} else {
					resolve(null);
				}
			});
		})();
	});
};

module.exports.sync = function (filename, opts) {
	opts = opts || {};

	var parts = splitPath(opts.cwd);
	var len = parts.length;

	while (len--) {
		var fp = join(parts, filename);

		if (pathExists.sync(fp)) {
			return fp;
		}

		parts.pop();
	}

	return null;
};

Version data entries

38 entries across 34 versions & 15 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/read-pkg-up/node_modules/find-up/index.js
disco_app-0.18.0 test/dummy/node_modules/read-pkg-up/node_modules/find-up/index.js
disco_app-0.18.2 test/dummy/node_modules/read-pkg-up/node_modules/find-up/index.js
tang-0.2.1 spec/tang_app/node_modules/read-pkg-up/node_modules/find-up/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/read-pkg-up/node_modules/find-up/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/read-pkg-up/node_modules/find-up/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/read-pkg-up/node_modules/find-up/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/read-pkg-up/node_modules/find-up/index.js
tang-0.2.0 spec/tang_app/node_modules/read-pkg-up/node_modules/find-up/index.js
tang-0.1.0 spec/tang_app/node_modules/read-pkg-up/node_modules/find-up/index.js
tang-0.0.9 spec/tang_app/node_modules/read-pkg-up/node_modules/find-up/index.js
enju_library-0.3.8 spec/dummy/node_modules/read-pkg-up/node_modules/find-up/index.js
ilog-0.4.1 node_modules/read-pkg-up/node_modules/find-up/index.js
ilog-0.4.1 node_modules/laravel-mix/node_modules/find-up/index.js
ilog-0.4.0 node_modules/read-pkg-up/node_modules/find-up/index.js
ilog-0.4.0 node_modules/laravel-mix/node_modules/find-up/index.js
ilog-0.3.3 node_modules/read-pkg-up/node_modules/find-up/index.js
ilog-0.3.3 node_modules/laravel-mix/node_modules/find-up/index.js
jester-data-8.0.0 node_modules/read-pkg-up/node_modules/find-up/index.js
ezii-os-5.2.1 node_modules/read-pkg-up/node_modules/find-up/index.js