diff options
| author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-03-14 15:24:54 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-14 10:24:54 -0400 |
| commit | 0b4f73cf9d6e7674c76126fc9d37defb58e7a433 (patch) | |
| tree | a7f47f908cf81ea36771b537fe043d3ed17bfc34 /fs/globrex.ts | |
| parent | a391660d2d539e3ca71418604e34df6c50dd6502 (diff) | |
Improve jsdoc (denoland/deno_std#277)
Original: https://github.com/denoland/deno_std/commit/1805c18ac7ed3aa6727f509ee2ec55f718ff2f61
Diffstat (limited to 'fs/globrex.ts')
| -rw-r--r-- | fs/globrex.ts | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/fs/globrex.ts b/fs/globrex.ts index c3cf7a337..439cea348 100644 --- a/fs/globrex.ts +++ b/fs/globrex.ts @@ -23,14 +23,14 @@ export interface GlobrexResult { /** * Convert any glob pattern to a JavaScript Regexp object - * @param {String} glob Glob pattern to convert - * @param {Object} opts Configuration object - * @param {Boolean} [opts.extended=false] Support advanced ext globbing - * @param {Boolean} [opts.globstar=false] Support globstar - * @param {Boolean} [opts.strict=true] be laissez faire about mutiple slashes - * @param {Boolean} [opts.filepath=''] Parse as filepath for extra path related features - * @param {String} [opts.flags=''] RegExp globs - * @returns {Object} converted object with string, segments and RegExp object + * @param glob Glob pattern to convert + * @param opts Configuration object + * @param [opts.extended=false] Support advanced ext globbing + * @param [opts.globstar=false] Support globstar + * @param [opts.strict=true] be laissez faire about mutiple slashes + * @param [opts.filepath=""] Parse as filepath for extra path related features + * @param [opts.flags=""] RegExp globs + * @returns Converted object with string, segments and RegExp object */ export function globrex( glob: string, |
