Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitce877c6

Browse files
Uzlopakmarco-ippolito
authored andcommitted
util: fix crashing when emitting new Buffer() deprecation warning#53075
PR-URL:#53089Reviewed-By: James M Snell <jasnell@gmail.com>Reviewed-By: Yagiz Nizipli <yagiz.nizipli@sentry.io>Reviewed-By: Tim Perry <pimterry@gmail.com>Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
1 parent0c24b91 commitce877c6

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

‎lib/internal/util.js

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ const {
3737
SafeWeakRef,
3838
StringPrototypeIncludes,
3939
StringPrototypeReplace,
40+
StringPrototypeStartsWith,
4041
StringPrototypeToLowerCase,
4142
StringPrototypeToUpperCase,
4243
Symbol,
@@ -502,11 +503,14 @@ function isInsideNodeModules() {
502503
if(ArrayIsArray(stack)){
503504
for(constframeofstack){
504505
constfilename=frame.getFileName();
505-
// If a filename does not start with / or contain \,
506-
// it's likely from Node.js core.
506+
507507
if(
508-
filename[0]!=='/'&&
509-
StringPrototypeIncludes(filename,'\\')===false
508+
filename==null||
509+
StringPrototypeStartsWith(filename,'node:')===true||
510+
(
511+
filename[0]!=='/'&&
512+
StringPrototypeIncludes(filename,'\\')===false
513+
)
510514
){
511515
continue;
512516
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp