| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent a71b9fc commit cb39e4c
3 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -86,7 +86,6 @@ const { | |||
| 86 | 86 | const { toPathIfFileURL } = require('internal/url'); | |
| 87 | 87 | const { | |
| 88 | 88 | customPromisifyArgs: kCustomPromisifyArgsSymbol, | |
| 89 | - emitExperimentalWarning, | ||
| 90 | 89 | getLazy, | |
| 91 | 90 | kEmptyObject, | |
| 92 | 91 | promisify: { | |
@@ -3186,7 +3185,6 @@ function createWriteStream(path, options) { | |||
| 3186 | 3185 | const lazyGlob = getLazy(() => require('internal/fs/glob').Glob); | |
| 3187 | 3186 | ||
| 3188 | 3187 | function glob(pattern, options, callback) { | |
| 3189 | - emitExperimentalWarning('glob'); | ||
| 3190 | 3188 | if (typeof options === 'function') { | |
| 3191 | 3189 | callback = options; | |
| 3192 | 3190 | options = undefined; | |
@@ -3209,7 +3207,6 @@ function glob(pattern, options, callback) { | |||
| 3209 | 3207 | } | |
| 3210 | 3208 | ||
| 3211 | 3209 | function globSync(pattern, options) { | |
| 3212 | - emitExperimentalWarning('globSync'); | ||
| 3213 | 3210 | const Glob = lazyGlob(); | |
| 3214 | 3211 | return new Glob(pattern, options).globSync(); | |
| 3215 | 3212 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -91,7 +91,6 @@ const pathModule = require('path'); | |||
| 91 | 91 | const { isAbsolute } = pathModule; | |
| 92 | 92 | const { toPathIfFileURL } = require('internal/url'); | |
| 93 | 93 | const { | |
| 94 | - emitExperimentalWarning, | ||
| 95 | 94 | getLazy, | |
| 96 | 95 | kEmptyObject, | |
| 97 | 96 | lazyDOMException, | |
@@ -1260,7 +1259,6 @@ async function* _watch(filename, options = kEmptyObject) { | |||
| 1260 | 1259 | ||
| 1261 | 1260 | const lazyGlob = getLazy(() => require('internal/fs/glob').Glob); | |
| 1262 | 1261 | async function* glob(pattern, options) { | |
| 1263 | - emitExperimentalWarning('glob'); | ||
| 1264 | 1262 | const Glob = lazyGlob(); | |
| 1265 | 1263 | yield* new Glob(pattern, options).glob(); | |
| 1266 | 1264 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -54,7 +54,6 @@ const { | |||
| 54 | 54 | ||
| 55 | 55 | const { | |
| 56 | 56 | getLazy, | |
| 57 | - emitExperimentalWarning, | ||
| 58 | 57 | isWindows, | |
| 59 | 58 | isMacOS, | |
| 60 | 59 | } = require('internal/util'); | |
@@ -166,7 +165,6 @@ function _format(sep, pathObject) { | |||
| 166 | 165 | } | |
| 167 | 166 | ||
| 168 | 167 | function glob(path, pattern, windows) { | |
| 169 | - emitExperimentalWarning('glob'); | ||
| 170 | 168 | validateString(path, 'path'); | |
| 171 | 169 | validateString(pattern, 'pattern'); | |
| 172 | 170 | return lazyMinimatch().minimatch(path, pattern, { | |
| Back | FazBrowse Home | New Git URL |
0 commit comments