a tool for shared writing and social publishing
at debug/datetime 3 lines 93 B view raw
1type SafeArray<T> = Omit<Array<T>, number> & { 2 readonly [index: number]: T | undefined; 3};