You're Invited: Meet the Socket team at BSidesSF and RSAC - April 27 - May 1.RSVP
Socket
Sign inDemoInstall
Socket

@techor/glob

Package Overview
Dependencies
Maintainers
1
Versions
70
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@techor/glob

A human-friendly set of glob utilities

2.6.5
Source
npm
Version published
Weekly downloads
173
198.28%
Maintainers
1
Weekly downloads
 
Created
Source

A human-friendly set of glob utilities

NPM Version NPM Version NPM package ( download / month ) Follow @mastercorg Github release actions


Getting Started

npm install @techor/glob

Usage

explorePathSync(source: string | string[], options?: Options | undefined): string
explorePathsSync(source: string | string[], options?: Options | undefined): string[]
├── a.json
├── b.json
└── c.json
import { explorePathSync } from '@techor/glob'

explorePathSync('a.*')
// 'a.json'

explorePathSync('*.json')
// 'a.json'

explorePathsSync('*.json')
// ['a.json', 'b.json', 'c.json']

Options

Inherited from fast-glob options


NPM Version

Keywords

glob

FAQs

Package last updated on 15 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts