معرفی شرکت ها


bash-match-1.0.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Match strings using bash. Does not work on windows, and does not read from the file system. This library requires that Bash 4.3 or higher is installed and is mostly used for checking parity in unit tests.
ویژگی مقدار
سیستم عامل -
نام فایل bash-match-1.0.2
نام bash-match
نسخه کتابخانه 1.0.2
نگهدارنده ['jonschlinkert']
ایمیل نگهدارنده ['github@sellside.com']
نویسنده Jon Schlinkert
ایمیل نویسنده -
آدرس صفحه اصلی git+https://github.com/micromatch/bash-match.git
آدرس اینترنتی https://github.com/micromatch/bash-match
مجوز MIT
# bash-match [![NPM version](https://img.shields.io/npm/v/bash-match.svg?style=flat)](https://www.npmjs.com/package/bash-match) [![NPM monthly downloads](https://img.shields.io/npm/dm/bash-match.svg?style=flat)](https://npmjs.org/package/bash-match) [![NPM total downloads](https://img.shields.io/npm/dt/bash-match.svg?style=flat)](https://npmjs.org/package/bash-match) [![Linux Build Status](https://img.shields.io/travis/micromatch/bash-match.svg?style=flat&label=Travis)](https://travis-ci.org/micromatch/bash-match) > Match strings using bash. Does not work on windows, and does not read from the file system. This library requires that Bash 4.3 or higher is installed and is mostly used for checking parity in unit tests. ## Install Install with [npm](https://www.npmjs.com/): ```sh $ npm install --save bash-match ``` Install with [yarn](https://yarnpkg.com): ```sh $ yarn add bash-match ``` ## Usage ```js var readme = require('bash-match'); ``` ## API ### [bash](index.js#L30) Returns true if `str` matches the given `pattern`. **Params** * `str` **{String}** * `pattern` **{String}** * `options` **{Options}**: Set `strictErrors` to true to throw when bash throws an error. Otherwise it just returns false. * `returns` **{Boolean}** **Example** ```js var bash = require('bash-match'); console.log(bash('foo', 'f*')); //=> true console.log(bash('foo', 'b*')); //=> false ``` <details> <summary><strong>.isMatch</strong></summary> ### [.isMatch](index.js#L74) Returns true if `str` matches the given `pattern`. Alias for the [main export](#bash). **Params** * `str` **{String}** * `pattern` **{String}** * `options` **{Options}**: Set `strictErrors` to true to throw when bash throws an error. Otherwise it just returns false. * `returns` **{Boolean}** **Example** ```js var bash = require('bash-match'); console.log(bash.isMatch('foo', 'f*')); //=> true console.log(bash.isMatch('foo', 'b*')); //=> false ``` </details> <details> <summary><strong>.match</strong></summary> ### [.match](index.js#L95) Takes a `list` of strings and a glob `pattern`, and returns an array of strings that match the pattern. **Params** * `array` **{Array}**: List of strings to match * `pattern` **{String}**: Glob pattern * `options` **{Options}**: Set `strictErrors` to true to throw when bash throws an error. Otherwise it just returns false. * `returns` **{Boolean}** **Example** ```js var bash = require('bash-match'); console.log(bash.match(['foo', 'bar'], 'b*')); //=> ['bar'] ``` </details> ## About ### Related projects * [bash-glob](https://www.npmjs.com/package/bash-glob): Bash-powered globbing for node.js | [homepage](https://github.com/jonschlinkert/bash-glob "Bash-powered globbing for node.js") * [braces](https://www.npmjs.com/package/braces): Fast, comprehensive, bash-like brace expansion implemented in JavaScript. Complete support for the Bash 4.3 braces… [more](https://github.com/micromatch/braces) | [homepage](https://github.com/micromatch/braces "Fast, comprehensive, bash-like brace expansion implemented in JavaScript. Complete support for the Bash 4.3 braces specification, without sacrificing speed.") * [micromatch](https://www.npmjs.com/package/micromatch): Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch. | [homepage](https://github.com/jonschlinkert/micromatch "Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.") * [nanomatch](https://www.npmjs.com/package/nanomatch): Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash… [more](https://github.com/jonschlinkert/nanomatch) | [homepage](https://github.com/jonschlinkert/nanomatch "Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)") ### Contributing Pull requests and stars are always welcome. For bugs and feature requests, [please create an issue](../../issues/new). Please read the [contributing guide](.github/contributing.md) for advice on opening issues, pull requests, and coding standards. ### Building docs _(This project's readme.md is generated by [verb](https://github.com/verbose/verb-generate-readme), please don't edit the readme directly. Any changes to the readme must be made in the [.verb.md](.verb.md) readme template.)_ To generate the readme, run the following command: ```sh $ npm install -g verbose/verb#dev verb-generate-readme && verb ``` ### Running tests Running and reviewing unit tests is a great way to get familiarized with a library and its API. You can install dependencies and run tests with the following command: ```sh $ npm install && npm test ``` ### Author **Jon Schlinkert** * [github/jonschlinkert](https://github.com/jonschlinkert) * [twitter/jonschlinkert](https://twitter.com/jonschlinkert) ### License Copyright © 2017, [Jon Schlinkert](https://github.com/jonschlinkert). Released under the [MIT License](LICENSE). *** _This file was generated by [verb-generate-readme](https://github.com/verbose/verb-generate-readme), v0.6.0, on April 27, 2017._


نیازمندی

مقدار نام
^5.1.0 cross-spawn
^2.0.1 extend-shallow
^2.1.1 is-extglob
^1.0.0 is-windows


زبان مورد نیاز

مقدار نام
7.7.3 Npm


نحوه نصب


نصب پکیج tgz bash-match-1.0.2:

    npm install bash-match-1.0.2.tgz