(str, ...rest)
| 10665 | const RegExpPrototypeExec = (obj, string) => RegExp.prototype.exec.call(obj, string); |
| 10666 | const RegExpPrototypeSymbolReplace = (obj, ...rest) => RegExp.prototype[Symbol.replace].apply(obj, rest); |
| 10667 | const StringPrototypeEndsWith = (str, ...rest) => String.prototype.endsWith.apply(str, rest); |
| 10668 | const StringPrototypeIncludes = (str, ...rest) => String.prototype.includes.apply(str, rest); |
| 10669 | const StringPrototypeLastIndexOf = (str, ...rest) => String.prototype.lastIndexOf.apply(str, rest); |
| 10670 | const StringPrototypeIndexOf = (str, ...rest) => String.prototype.indexOf.apply(str, rest); |
no outgoing calls
no test coverage detected