Today I Learned

2023/05/28

typescript
type NonEmptyArray<T> = [T, ...T[]];

First seen at https://github.com/rust-lang/rust-analyzer/blob/master/editors/code/src/util.ts#L24