Skip to content

Commit e44227f

Browse files
committed
Add comment to convertGlobToRegExp
1 parent 4a759ce commit e44227f

File tree

4 files changed

+39
-1
lines changed

4 files changed

+39
-1
lines changed

lib/JSON.d.ts

+10
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,16 @@ export declare namespace JSON {
2424
(this: T, key: string, value: T[keyof T]): any;
2525
}
2626
type Type = (Array | Object | Primitive);
27+
/**
28+
* Converts simple glob patterns to RegExp patterns that can be used in the
29+
* {@link extractWithPatterns} function.
30+
*
31+
* @param glob
32+
* Glob pattern to convert.
33+
*
34+
* @return
35+
* Converted RegExp pattern out of the glob pattern.
36+
*/
2737
function convertGlobToRegExp(glob: string): RegExp;
2838
/**
2939
* Extracts a path in a JSON object and returns the found portion.

lib/JSON.js

+10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

lib/JSON.js.map

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/JSON.ts

+18
Original file line numberDiff line numberDiff line change
@@ -10,30 +10,36 @@
1010
1111
\*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*i*/
1212

13+
1314
/* *
1415
*
1516
* Declarations
1617
*
1718
* */
1819

20+
1921
export type ESArray<T> = Array<T>;
2022

2123
export type JSON = ( JSON.Array | JSON.Object );
2224

25+
2326
/* *
2427
*
2528
* Namespace
2629
*
2730
* */
2831

32+
2933
export namespace JSON {
3034

35+
3136
/* *
3237
*
3338
* Declarations
3439
*
3540
* */
3641

42+
3743
export interface Array extends ESArray<Type>, Record<number, Type> {
3844
// nothing to add
3945
}
@@ -61,12 +67,24 @@ export namespace JSON {
6167
}
6268
export type Type = ( Array | Object | Primitive );
6369

70+
6471
/* *
6572
*
6673
* Functions
6774
*
6875
* */
6976

77+
78+
/**
79+
* Converts simple glob patterns to RegExp patterns that can be used in the
80+
* {@link extractWithPatterns} function.
81+
*
82+
* @param glob
83+
* Glob pattern to convert.
84+
*
85+
* @return
86+
* Converted RegExp pattern out of the glob pattern.
87+
*/
7088
export function convertGlobToRegExp (
7189
glob: string
7290
): RegExp {

0 commit comments

Comments
 (0)