(text: string)
| 52 | |
| 53 | /** @internal */ |
| 54 | export const fromString = (text: string): SecretURL.SecretURL => { |
| 55 | return make(text.split("").map((char) => char.charCodeAt(0))) |
| 56 | } |
| 57 | |
| 58 | /** @internal */ |
| 59 | export const value = (self: SecretURL.SecretURL): string => { |
no test coverage detected
searching dependent graphs…