(password)
| 320 | * @returns {boolean} `true` if truncated, otherwise `false` |
| 321 | */ |
| 322 | export function truncates(password) { |
| 323 | if (typeof password !== "string") |
| 324 | throw Error("Illegal arguments: " + typeof password); |
| 325 | return utf8Length(password) > 72; |
| 326 | } |
| 327 | |
| 328 | /** |
| 329 | * Continues with the callback after yielding to the event loop. |
nothing calls this directly
no test coverage detected