(str: string)
| 163 | } |
| 164 | |
| 165 | export function toCharCodes(str: string): Uint8Array { |
| 166 | const ret = new Uint8Array(str.length) |
| 167 | for (let i = 0; i < str.length; i++) { |
| 168 | ret[i] = str.charCodeAt(i) |
| 169 | } |
| 170 | return ret |
| 171 | } |
| 172 | |
| 173 | export enum QuoteType { |
| 174 | NoValue = 0, |
no outgoing calls
no test coverage detected