fs: glob is stable, so should not emit experimental warnings · nodejs/node@cb39e4c · GitHub
Skip to content

Commit cb39e4c

Browse files
theoludwigaduh95
authored andcommitted
fs: glob is stable, so should not emit experimental warnings
PR-URL: #58236 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent a71b9fc commit cb39e4c

3 files changed

Lines changed: 0 additions & 7 deletions

File tree

lib/fs.js

Lines changed: 0 additions & 3 deletions

lib/internal/fs/promises.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,6 @@ const pathModule = require('path');
9191
const { isAbsolute } = pathModule;
9292
const { toPathIfFileURL } = require('internal/url');
9393
const {
94-
emitExperimentalWarning,
9594
getLazy,
9695
kEmptyObject,
9796
lazyDOMException,
@@ -1260,7 +1259,6 @@ async function* _watch(filename, options = kEmptyObject) {
12601259

12611260
const lazyGlob = getLazy(() => require('internal/fs/glob').Glob);
12621261
async function* glob(pattern, options) {
1263-
emitExperimentalWarning('glob');
12641262
const Glob = lazyGlob();
12651263
yield* new Glob(pattern, options).glob();
12661264
}

lib/path.js

Lines changed: 0 additions & 2 deletions

0 commit comments

Comments
 (0)