chore(Readme): removed duplicate list items

This commit is contained in:
Jesse Kelly
2023-08-06 13:52:33 -06:00
committed by GitHub
parent 1707ea63da
commit 93da571524

View File

@@ -231,10 +231,6 @@ type ElementFromSelector<T> = H.Pipe<T, [
- [x] `Keys<Obj>`: Extracts the keys from an object type `Obj`.
- [x] `Values<Obj>`: Extracts the values from an object type `Obj`.
- [x] `AllPaths<Obj>`: Extracts all possible paths of an object type `Obj`.
- [x] `Record<Key, Value>`: Creates an object type with keys of type `Key` and values of type `Value`.
- [x] `Keys<Obj>`: Extracts the keys from an object type `Obj`.
- [x] `Values<Obj>`: Extracts the values from an object type `Obj`.
- [x] `AllPaths<Obj>`: Extracts all possible paths of an object type `Obj`.
- [x] `Create<Pattern, X>`: Creates an object of type Pattern with values of type X.
- [x] `Get<Path, Obj>`: Gets the value at the specified path `Path` in the object `Obj`.
- [x] `FromEntries<[Key, Value]>`: Creates an object from a union of key-value pairs.