diff options
author | Leo Kettmeir <crowlkats@toaxl.com> | 2023-02-05 17:49:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-05 17:49:20 +0100 |
commit | 84a96110cd8e74228fbab666e7af49edb7e24cc9 (patch) | |
tree | 8e1995e6ddb3836923f50e915294664aa27b7511 /ext/web/02_event.js | |
parent | a09296322e1fd4451e903515a497d9e02e14ace6 (diff) |
refactor: rename `deno` specifiers to `internal` (#17655)
Diffstat (limited to 'ext/web/02_event.js')
-rw-r--r-- | ext/web/02_event.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/web/02_event.js b/ext/web/02_event.js index dac126280..c99eb8f6e 100644 --- a/ext/web/02_event.js +++ b/ext/web/02_event.js @@ -1462,7 +1462,7 @@ const frame = frames[i]; if ( typeof frame.fileName == "string" && - !StringPrototypeStartsWith(frame.fileName, "deno:") + !StringPrototypeStartsWith(frame.fileName, "internal:") ) { filename = frame.fileName; lineno = frame.lineNumber; |