(form)
| 204 | * Throws if the normalization %%form%% is not supported. |
| 205 | */ |
| 206 | export function assertNormalize(form) { |
| 207 | assert(_normalizeForms.indexOf(form) >= 0, "platform missing String.prototype.normalize", "UNSUPPORTED_OPERATION", { |
| 208 | operation: "String.prototype.normalize", info: { form } |
| 209 | }); |
| 210 | } |
| 211 | /** |
| 212 | * Many classes use file-scoped values to guard the constructor, |
| 213 | * making it effectively private. This facilitates that pattern |
no test coverage detected