(value)
| 128 | // } |
| 129 | |
| 130 | function assertString(value) { |
| 131 | if (typeof value !== 'string') { |
| 132 | throw new TypeError(`Expected \`string\`, got \`${typeof value}\``); |
| 133 | } |
| 134 | } |
| 135 | |
| 136 | const cachedEncoder = new globalThis.TextEncoder(); |
| 137 |
no outgoing calls
no test coverage detected