summaryrefslogtreecommitdiffstats
path: root/node_modules/findup-sync/README.md
diff options
context:
space:
mode:
authorGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
committerGravatar Piotr Russ <mail@pruss.it> 2020-11-18 23:26:45 +0100
commit81ddf9b700bc48a1f8e472209f080f9c1d9a9b09 (patch)
tree8b959d50c5a614cbf9fcb346ed556140374d4b6d /node_modules/findup-sync/README.md
parent1870f3fdf43707a15fda0f609a021f516f45eb63 (diff)
downloadwebsite_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.gz
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.tar.bz2
website_creator-81ddf9b700bc48a1f8e472209f080f9c1d9a9b09.zip
rm node_modules
Diffstat (limited to 'node_modules/findup-sync/README.md')
-rw-r--r--node_modules/findup-sync/README.md57
1 files changed, 0 insertions, 57 deletions
diff --git a/node_modules/findup-sync/README.md b/node_modules/findup-sync/README.md
deleted file mode 100644
index 3d1b17b..0000000
--- a/node_modules/findup-sync/README.md
+++ /dev/null
@@ -1,57 +0,0 @@
-<p align="center">
- <a href="http://gulpjs.com">
- <img height="257" width="114" src="https://raw.githubusercontent.com/gulpjs/artwork/master/gulp-2x.png">
- </a>
-</p>
-
-
-# findup-sync
-
-[![NPM version][npm-image]][npm-url] [![Downloads][downloads-image]][npm-url] [![Travis Build Status][travis-image]][travis-url] [![AppVeyor Build Status][appveyor-image]][appveyor-url] [![Coveralls Status][coveralls-image]][coveralls-url] [![Gitter chat][gitter-image]][gitter-url]
-
-Find the first file matching a given pattern in the current directory or the nearest ancestor directory.
-
-Matching is done with [micromatch][micromatch], please report any matching related issues on that repository.
-
-## Usage
-
-```js
-var findup = require('findup-sync');
-findup(patternOrPatterns [, micromatchOptions]);
-
-// Start looking in the CWD.
-var filepath1 = findup('{a,b}*.txt');
-
-// Start looking somewhere else, and ignore case (probably a good idea).
-var filepath2 = findup('{a,b}*.txt', {cwd: '/some/path', nocase: true});
-```
-
-## API
-
-### `findup(patterns, [options])`
-
-* `patterns` **{String|Array}**: Glob pattern(s) or file path(s) to match against.
-* `options` **{Object}**: Options to pass to [micromatch]. Note that if you want to start in a different directory than the current working directory, specify a `cwd` property here.
-* `returns` **{String}**: Returns the first matching file.
-
-## License
-
-MIT
-
-[micromatch]: http://github.com/jonschlinkert/micromatch
-
-[downloads-image]: http://img.shields.io/npm/dm/findup-sync.svg
-[npm-url]: https://www.npmjs.com/package/findup-sync
-[npm-image]: http://img.shields.io/npm/v/findup-sync.svg
-
-[travis-url]: https://travis-ci.org/gulpjs/findup-sync
-[travis-image]: http://img.shields.io/travis/gulpjs/findup-sync.svg?label=travis-ci
-
-[appveyor-url]: https://ci.appveyor.com/project/gulpjs/findup-sync
-[appveyor-image]: https://img.shields.io/appveyor/ci/gulpjs/findup-sync.svg?label=appveyor
-
-[coveralls-url]: https://coveralls.io/r/gulpjs/findup-sync
-[coveralls-image]: http://img.shields.io/coveralls/gulpjs/findup-sync/master.svg
-
-[gitter-url]: https://gitter.im/gulpjs/gulp
-[gitter-image]: https://badges.gitter.im/gulpjs/gulp.svg