braces/000755 001751 000166 0000000000 14736713020013777 5ustar00runner000000 000000 1473671302014736713020braces/LICENSE000644 001751 000166 0000002165 14736713020015010 0ustar00runner000000 000000 1473671302014736713020 MIT License Copyright (c) Microsoft Corporation. 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 braces/README.md000644 001751 000166 0000001024 14736713020015253 0ustar00runner000000 000000 1473671302014736713020# Installation > `npm install --save @types/braces` # Summary This package contains type definitions for braces (https://github.com/micromatch/braces). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/braces. ### Additional Details * Last updated: Mon, 06 Jan 2025 08:36:32 GMT * Dependencies: none # Credits These definitions were written by [vemoo](https://github.com/vemoo), [mrmlnc](https://github.com/mrmlnc), and [rejunp](https://github.com/rejunp). braces/index.d.ts000644 001751 000166 0000007362 14736713020015710 0ustar00runner000000 000000 1473671302014736713020declare namespace braces { type Transform = (str: string) => string; interface Options { /** * Limit the length of the input string. Useful when the input string is generated or your application allows * users to pass a string, et cetera. * * @default 65536 * @example * console.log(braces('a/{b,c}/d', { maxLength: 3 })); * //=> throws an error */ maxLength?: number | undefined; /** * Generate an "expanded" brace pattern (alternatively you can use the `braces.expand()` method). * * @default undefined * @example * console.log(braces('a/{b,c}/d', { expand: true })); * //=> [ 'a/b/d', 'a/c/d' ] */ expand?: boolean | undefined; /** * Remove duplicates from the returned array. * * @default undefined */ nodupes?: boolean | undefined; /** * To prevent malicious patterns from being passed by users, an error is thrown when `braces.expand()` * is used or `options.expand` is true and the generated range will exceed the `rangeLimit`. * * You can customize `options.rangeLimit` or set it to `Infinity` to disable this altogether. * * @default 1000 * @example * // pattern exceeds the "rangeLimit", so it's optimized automatically * console.log(braces.expand('{1..1000}')); * //=> ['([1-9]|[1-9][0-9]{1,2}|1000)'] * * // pattern does not exceed "rangeLimit", so it's NOT optimized * console.log(braces.expand('{1..100}')); * //=> ['1', '2', '3', '4', '5', …, '100'] */ rangeLimit?: number | undefined; /** * Customize range expansion. * * @default undefined * @example * const range = braces.expand('x{a..e}y', { * transform: (str) => `foo/${str}` * }); * * console.log(range); * //=> [ 'xfooay', 'xfooby', 'xfoocy', 'xfoody', 'xfooey' ] */ transform?: Transform | undefined; /** * In regular expressions, quanitifiers can be used to specify how many times a token can be repeated. * For example, `a{1,3}` will match the letter `a` one to three times. * * Unfortunately, regex quantifiers happen to share the same syntax as [Bash lists](#lists) * * The `quantifiers` option tells braces to detect when [regex quantifiers](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RegExp#quantifiers) * are defined in the given pattern, and not to try to expand them as lists. * * @default undefined * @example * const braces = require('braces'); * console.log(braces('a/b{1,3}/{x,y,z}')); * //=> [ 'a/b(1|3)/(x|y|z)' ] * console.log(braces('a/b{1,3}/{x,y,z}', {quantifiers: true})); * //=> [ 'a/b{1,3}/(x|y|z)' ] * console.log(braces('a/b{1,3}/{x,y,z}', {quantifiers: true, expand: true})); * //=> [ 'a/b{1,3}/x', 'a/b{1,3}/y', 'a/b{1,3}/z' ] */ quantifiers?: boolean | undefined; /** * Do not strip backslashes that were used for escaping from the result. * * @default undefined */ keepEscaping?: boolean | undefined; /** * Do not strip quotes from the result. * * @default undefined */ keepQuotes?: boolean | undefined; } } interface Braces { (pattern: string, options?: braces.Options): string[]; expand(pattern: string): string[]; } declare const braces: Braces; export as namespace braces; export = braces; braces/package.json000644 001751 000166 0000002061 14736713020016264 0ustar00runner000000 000000 1473671302014736713020{ "name": "@types/braces", "version": "3.0.5", "description": "TypeScript definitions for braces", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/braces", "license": "MIT", "contributors": [ { "name": "vemoo", "githubUsername": "vemoo", "url": "https://github.com/vemoo" }, { "name": "mrmlnc", "githubUsername": "mrmlnc", "url": "https://github.com/mrmlnc" }, { "name": "rejunp", "githubUsername": "rejunp", "url": "https://github.com/rejunp" } ], "main": "", "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/braces" }, "scripts": {}, "dependencies": {}, "peerDependencies": {}, "typesPublisherContentHash": "7c6b3db42eda6be5305ee19aecb594a1bf3137397bb0309631bac6145f46d37a", "typeScriptVersion": "5.0" }