remove some methods

pull/15802/head
ComputerGuy 1 year ago
parent 034aab970c
commit 3c0601223e

@ -70,7 +70,6 @@ const globals = {
'Number.parseFloat': [NUMBER, Number.parseFloat], 'Number.parseFloat': [NUMBER, Number.parseFloat],
'Number.parseInt': [NUMBER, Number.parseInt], 'Number.parseInt': [NUMBER, Number.parseInt],
'Object.is': [[true, false], Object.is], 'Object.is': [[true, false], Object.is],
'Object.hasOwn': [[true, false], Object.hasOwn],
String: [STRING, String], String: [STRING, String],
'String.fromCharCode': [STRING, String.fromCharCode], 'String.fromCharCode': [STRING, String.fromCharCode],
'String.fromCodePoint': [STRING, String.fromCodePoint] 'String.fromCodePoint': [STRING, String.fromCodePoint]
@ -117,7 +116,6 @@ const prototype_methods = {
startsWith: [[true, false], call_bind(string_proto.startsWith)], startsWith: [[true, false], call_bind(string_proto.startsWith)],
endsWith: [[true, false], call_bind(string_proto.endsWith)], endsWith: [[true, false], call_bind(string_proto.endsWith)],
isWellFormed: [[true, false], call_bind(string_proto.isWellFormed)], isWellFormed: [[true, false], call_bind(string_proto.isWellFormed)],
lastIndexOf: [NUMBER, call_bind(string_proto.lastIndexOf)],
normalize: [STRING, call_bind(string_proto.normalize)], normalize: [STRING, call_bind(string_proto.normalize)],
padEnd: [STRING, call_bind(string_proto.padEnd)], padEnd: [STRING, call_bind(string_proto.padEnd)],
padStart: [STRING, call_bind(string_proto.padStart)], padStart: [STRING, call_bind(string_proto.padStart)],

Loading…
Cancel
Save