| 14 | declare global { |
| 15 | // biome-ignore lint/style/useConsistentTypeDefinitions: leave as interface due to type checker |
| 16 | interface String { |
| 17 | removePrefix(this: string, prefix: string): string; |
| 18 | removeSuffix(this: string, suffix: string): string; |
| 19 | } |
| 20 | } |
| 21 | |
| 22 | String.prototype.removePrefix = function (this: string, prefix: string) { |
no outgoing calls
no test coverage detected
searching dependent graphs…