uawdijnntqw1x1x1
IP : 216.73.216.110
Hostname : 6.87.74.97.host.secureserver.net
Kernel : Linux 6.87.74.97.host.secureserver.net 4.18.0-553.83.1.el8_10.x86_64 #1 SMP Mon Nov 10 04:22:44 EST 2025 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
home
/
emeraadmin
/
.cpanel
/
.
/
..
/
public_html
/
wp-includes
/
..
/
node_modules
/
..
/
4d695
/
findup-sync.zip
/
/
PKs[�\£\�g g package.jsonnu�[���{ "_from": "findup-sync@^4.0.0", "_id": "findup-sync@4.0.0", "_inBundle": false, "_integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", "_location": "/findup-sync", "_phantomChildren": {}, "_requested": { "type": "range", "registry": true, "raw": "findup-sync@^4.0.0", "name": "findup-sync", "escapedName": "findup-sync", "rawSpec": "^4.0.0", "saveSpec": null, "fetchSpec": "^4.0.0" }, "_requiredBy": [ "/liftup" ], "_resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", "_shasum": "956c9cdde804052b881b428512905c4a5f2cdef0", "_spec": "findup-sync@^4.0.0", "_where": "C:\\xampp\\htdocs\\emeraltd\\node_modules\\liftup", "author": { "name": "Gulp Team", "email": "team@gulpjs.com", "url": "https://gulpjs.com/" }, "bugs": { "url": "https://github.com/gulpjs/findup-sync/issues" }, "bundleDependencies": false, "contributors": [ { "name": "Ben Alman", "email": "cowboy@rj3.net" }, { "name": "Tyler Kellen", "email": "tyler@sleekcode.net" }, { "name": "Jon Schlinkert", "email": "jon.schlinkert@sellside.com" }, { "name": "Blaine Bublitz", "email": "blaine.bublitz@gmail.com" } ], "dependencies": { "detect-file": "^1.0.0", "is-glob": "^4.0.0", "micromatch": "^4.0.2", "resolve-dir": "^1.0.1" }, "deprecated": false, "description": "Find the first file matching a given pattern in the current directory or the nearest ancestor directory.", "devDependencies": { "coveralls": "github:phated/node-coveralls#2.x", "eslint": "^6.0.1", "eslint-config-gulp": "^3.0.1", "expect": "^1.20.2", "homedir-polyfill": "^1.0.1", "mocha": "^6.1.4", "normalize-path": "^3.0.0", "nyc": "^14.1.1", "resolve": "^1.4.0" }, "engines": { "node": ">= 8" }, "files": [ "index.js", "LICENSE" ], "homepage": "https://github.com/gulpjs/findup-sync#readme", "keywords": [ "file", "find", "find-up", "findup", "glob", "match", "pattern", "resolve", "search" ], "license": "MIT", "main": "index.js", "name": "findup-sync", "repository": { "type": "git", "url": "git+https://github.com/gulpjs/findup-sync.git" }, "scripts": { "azure-pipelines": "nyc mocha --async-only --reporter xunit -O output=test.xunit", "coveralls": "nyc report --reporter=text-lcov | coveralls", "lint": "eslint .", "pretest": "npm run lint", "test": "nyc mocha --async-only" }, "version": "4.0.0" } PKs[�\��7��LICENSEnu�[���The MIT License (MIT) Copyright (c) 2013-2019 Ben Alman <cowboy@rj3.net>, Blaine Bublitz <blaine.bublitz@gmail.com>, and Eric Schoffstall <yo@contra.io> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. PKs[�\��I���index.jsnu�[���'use strict'; /** * Module dependencies */ var fs = require('fs'); var path = require('path'); var isGlob = require('is-glob'); var resolveDir = require('resolve-dir'); var detect = require('detect-file'); var mm = require('micromatch'); /** * @param {String|Array} `pattern` Glob pattern or file path(s) to match against. * @param {Object} `options` Options to pass to [micromatch]. Note that if you want to start in a different directory than the current working directory, specify the `options.cwd` property here. * @return {String} Returns the first matching file. * @api public */ module.exports = function(patterns, options) { options = options || {}; var cwd = path.resolve(resolveDir(options.cwd || '')); if (typeof patterns === 'string') { return lookup(cwd, [patterns], options); } if (!Array.isArray(patterns)) { throw new TypeError('findup-sync expects a string or array as the first argument.'); } return lookup(cwd, patterns, options); }; function lookup(cwd, patterns, options) { var len = patterns.length; var idx = -1; var res; while (++idx < len) { if (isGlob(patterns[idx])) { res = matchFile(cwd, patterns[idx], options); } else { res = findFile(cwd, patterns[idx], options); } if (res) { return res; } } var dir = path.dirname(cwd); if (dir === cwd) { return null; } return lookup(dir, patterns, options); } function matchFile(cwd, pattern, opts) { var isMatch = mm.matcher(pattern, opts); var files = tryReaddirSync(cwd); var len = files.length; var idx = -1; while (++idx < len) { var name = files[idx]; var fp = path.join(cwd, name); if (isMatch(name) || isMatch(fp)) { return fp; } } return null; } function findFile(cwd, filename, options) { var fp = cwd ? path.resolve(cwd, filename) : filename; return detect(fp, options); } function tryReaddirSync(fp) { try { return fs.readdirSync(fp); } catch (err) { // Ignore error } return []; } PKs[�\O]5�� � README.mdnu�[���<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] [![Azure Pipelines Build Status][azure-pipelines-image]][azure-pipelines-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]: https://img.shields.io/npm/dm/findup-sync.svg [npm-url]: https://www.npmjs.com/package/findup-sync [npm-image]: https://img.shields.io/npm/v/findup-sync.svg [azure-pipelines-url]: https://dev.azure.com/gulpjs/gulp/_build/latest?definitionId=7&branchName=master [azure-pipelines-image]: https://dev.azure.com/gulpjs/gulp/_apis/build/status/findup-sync?branchName=master [travis-url]: https://travis-ci.org/gulpjs/findup-sync [travis-image]: https://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]: https://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 PKs[�\£\�g g package.jsonnu�[���PKs[�\��7��� LICENSEnu�[���PKs[�\��I���tindex.jsnu�[���PKs[�\O]5�� � �README.mdnu�[���PK$m!
/home/emeraadmin/.cpanel/./../public_html/wp-includes/../node_modules/../4d695/findup-sync.zip