This repository has been archived on 2021-05-23. You can view files and clone it, but cannot push or open issues or pull requests.
simpledash/bulma/node_modules/find-up
Elara bb2c9351d6 Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
..
index.js Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
license Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
package.json Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00
readme.md Remove unnecessary resources, add bulma, and add AdvMakefile 2021-03-29 15:02:41 -07:00

readme.md

find-up Build Status

Find a file by walking up parent directories

Install

$ npm install --save find-up

Usage

/
└── Users
    └── sindresorhus
        ├── unicorn.png
        └── foo
            └── bar
                ├── baz
                └── example.js
// example.js
const findUp = require('find-up');

findUp('unicorn.png').then(filepath => {
	console.log(filepath);
	//=> '/Users/sindresorhus/unicorn.png'
});

API

findUp(filename, [options])

Returns a promise for the filepath or null.

findUp.sync(filename, [options])

Returns a filepath or null.

filename

Type: string

Filename of the file to find.

options

cwd

Type: string
Default: process.cwd()

Directory to start from.

  • find-up-cli - CLI for this module
  • pkg-up - Find the closest package.json file
  • pkg-dir - Find the root directory of an npm package

License

MIT © Sindre Sorhus