-
Notifications
You must be signed in to change notification settings - Fork 0
/
todo.xit
105 lines (87 loc) · 2.61 KB
/
todo.xit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[ ] Number
- Float, IsFloat
Mutate methods may be not good to target but we can provide a another immutable version
[ ] Array methods/properties:
+ at
- concat
- copyWithin?
- entries
- every?
- fill
- filter?
- find
- findIndex
- findLast
- findLastIndex
- flat?
- flatMap?
- from?
- includes
- indexOf
- join
- keys?
- lastIndexOf
- length
- of?
- pop?
+ push? -> append
- reverse?
+ shift?
- slice
- splice?
- split
- toString
+ unshift -> prepend
[ ] String methods/properties:
+ at
+ camelToKebab
- charAt -> at
- concat
- endsWith
- includes
- indexOf
- lastIndexOf
- length
- padEnd
- padStart
- repeat
- slice
- split
- startsWith
- substr
- substring
- toLowerCase
- toUpperCase
- trim
- trimEnd
- trimStart
[ ] Reimplement Range using extends OrderedDigits
[ ] Head
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L478
[ ] Tail
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L479
[ ] DeepModify
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L364
[ ] DeepNonNullable
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L112
[ ] DeepNullable
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L62
[ ] DeepOmit
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L240
[ ] DeepOptional
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L87
[ ] DeepPartial
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L35
[ ] DeepPick
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L301
[ ] DeepReadonly
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L156
[ ] DeepRequired
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L133
[ ] DeepWritable
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L186
[ ] ReadonlyKey
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L462
[ ] WritableKey
- https://github.com/ts-essentials/ts-essentials/blob/c63e30e6112ed93df0bcf05028cfe1d67617f93d/lib/types.ts#L467
[ ] - https://github.com/sindresorhus/is