remove Sequences.ofPropertyKeys
This commit is contained in:
@@ -62,10 +62,6 @@ export function of<T>(...elements: T[]): Sequence<T> {
|
||||
}
|
||||
}
|
||||
|
||||
export function ofPropertyKeys<T extends PropertyKey>(...elements: T[]): Sequence<T> {
|
||||
return of(...elements);
|
||||
}
|
||||
|
||||
export function entries<T>(o: Record<string, T> | ArrayLike<T>): Sequence<[string, T]> {
|
||||
return array(Object.entries(o));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user