MCPcopy Create free account
hub / github.com/codesandbox/excalidraw-firebase / StringPrototypeEndsWith

Function StringPrototypeEndsWith

.pnp.cjs:10667–10667  ·  view source on GitHub ↗
(str, ...rest)

Source from the content-addressed store, hash-verified

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

Callers 3

getPackageScopeConfigFunction · 0.70
packageExportsResolveFunction · 0.70
packageImportsResolveFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected