We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034aab9 commit 3c06012Copy full SHA for 3c06012
packages/svelte/src/compiler/phases/scope.js
@@ -70,7 +70,6 @@ const globals = {
70
'Number.parseFloat': [NUMBER, Number.parseFloat],
71
'Number.parseInt': [NUMBER, Number.parseInt],
72
'Object.is': [[true, false], Object.is],
73
- 'Object.hasOwn': [[true, false], Object.hasOwn],
74
String: [STRING, String],
75
'String.fromCharCode': [STRING, String.fromCharCode],
76
'String.fromCodePoint': [STRING, String.fromCodePoint]
@@ -117,7 +116,6 @@ const prototype_methods = {
117
116
startsWith: [[true, false], call_bind(string_proto.startsWith)],
118
endsWith: [[true, false], call_bind(string_proto.endsWith)],
119
isWellFormed: [[true, false], call_bind(string_proto.isWellFormed)],
120
- lastIndexOf: [NUMBER, call_bind(string_proto.lastIndexOf)],
121
normalize: [STRING, call_bind(string_proto.normalize)],
122
padEnd: [STRING, call_bind(string_proto.padEnd)],
123
padStart: [STRING, call_bind(string_proto.padStart)],
0 commit comments