Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.189.184.99
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
findup-sync /
Delete
Unzip
Name
Size
Permission
Date
Action
node_modules
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
LICENSE
1.15
KB
-rw-rw-r--
2022-08-30 11:49
README.md
2.12
KB
-rw-rw-r--
2022-08-30 11:49
index.js
1.98
KB
-rw-rw-r--
2022-08-30 11:49
package.json
1.36
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
<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