slopus--happy
98e40dac97
CLI Smoke Test / smoke-test-linux (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-linux (24) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (20) (push) Has been cancelled
CLI Smoke Test / smoke-test-windows (24) (push) Has been cancelled
Expo App TypeScript typecheck / typecheck (push) Has been cancelled
11 行
270 B
TypeScript
11 行
270 B
TypeScript
export function encodeUTF8(value: string) {
|
|
return new TextEncoder().encode(value);
|
|
}
|
|
|
|
export function decodeUTF8(value: Uint8Array) {
|
|
return new TextDecoder().decode(value);
|
|
}
|
|
|
|
export function normalizeNFKD(value: string) {
|
|
return value.normalize('NFKD');
|
|
} |