File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,10 @@ const win32 = {
182
182
throw new Error ( 'path.win32.parse() is not implemented.' ) ;
183
183
} ,
184
184
185
+ matchesGlob ( _path : string , _pattern : string ) : boolean {
186
+ throw new Error ( 'path.win32.matchesGlob() is not implemented.' ) ;
187
+ } ,
188
+
185
189
sep : '\\' ,
186
190
delimiter : ';' ,
187
191
win32 : null as Object | null ,
@@ -627,6 +631,10 @@ const posix = {
627
631
return ret ;
628
632
} ,
629
633
634
+ matchesGlob ( _path : string , _pattern : string ) : boolean {
635
+ throw new Error ( 'path.posix.matchesGlob() is not implemented.' ) ;
636
+ } ,
637
+
630
638
sep : '/' ,
631
639
delimiter : ':' ,
632
640
win32 : null as Object | null ,
Original file line number Diff line number Diff line change @@ -24,6 +24,7 @@ const {
24
24
parse,
25
25
sep,
26
26
delimiter,
27
+ matchesGlob,
27
28
} = posix ;
28
29
29
30
export {
@@ -42,6 +43,7 @@ export {
42
43
delimiter ,
43
44
posix ,
44
45
win32 ,
46
+ matchesGlob ,
45
47
} ;
46
48
47
49
export { default } from 'node-internal:internal_path' ;
You can’t perform that action at this time.
0 commit comments