Home
Docs
GitHub
Pricing
Blog
Log In

Run Sandworm Audit for your App

Get started
Generated on Apr 25, 2024 via pnpm
Package summary
Share
0
issues
1
license
1
MIT
Package created
6 Mar 2015
Version published
11 Dec 2016
Maintainers
2
Total deps
1
Direct deps
0
License
MIT

Issues

0
This package has no issues

Licenses

MIT License

Permissive
OSI Approved
This is a human-readable summary of (and not a substitute for) the license. Disclaimer.
Can
commercial-use
modify
distribute
sublicense
private-use
Cannot
hold-liable
Must
include-copyright
include-license
1 Packages, Including:
is-extglob@2.1.1
Disclaimer

This deed highlights only some of the key features and terms of the actual license. It is not a license and has no legal value. You should carefully review all of the terms and conditions of the actual license before using the licensed material.

Sandworm is not a law firm and does not provide legal services. Distributing, displaying, or linking to this deed or the license that it summarizes does not create a lawyer-client or any other relationship.

Direct Dependencies

0
All Dependencies CSV
β“˜ This is a list of is-extglob 's direct dependencies. Data on all dependencies, including transitive ones, is available via CSV download.
NameVersionSizeLicenseTypeVulnerabilities

Visualizations

Frequently Asked Questions

What does is-extglob do?

The npm package "is-extglob" is designed to run a check on strings and return true if the string contains an extended glob pattern. Extended globbing is a form of pattern matching and a string containing this pattern would signify complex command shells or scripting. Hence, this package is an exceptional tool for developers needing to identify the said patterns within strings.

How do you use is-extglob?

Using the package is-extglob is a pretty straightforward task. Post successful installation of the package using $ npm install --save is-extglob, it needs to be required in the JavaScript file using:

var isExtglob = require('is-extglob');

Then, you can implement the isExtglob function to verify if a string has an extglob. Below are examples demonstrating the usage of this function which returns 'True' when an extglob is present:

isExtglob('?(abc)');
isExtglob('@(abc)');
isExtglob('!(abc)');
isExtglob('*(abc)');
isExtglob('+(abc)');

Where are the is-extglob docs?

The principal source of information and documentation for is-extglob is the package's README file on its GitHub repository, which can be accessed using the following URL: git+https://github.com/jonschlinkert/is-extglob.git. The README provides core insights about the package, examples illustrating its usage, and even technicalities such as test running methods. This, in conjunction with related npm package docs, should cover most questions that a user might run into while using is-extglob.