forked from Chalarangelo/30-seconds-of-code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tag_database
184 lines (184 loc) · 3.23 KB
/
tag_database
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
anagrams:string
arrayToHtmlList:browser
average:math
bottomVisible:browser
byteSize:string
call:adapter
capitalize:string
capitalizeEveryWord:string
chainAsync:function
chunk:array
clampNumber:math
cleanObj:object
cloneRegExp:utility
coalesce:utility
coalesceFactory:utility
collatz:math
collectInto:adapter
compact:array
compose:function
copyToClipboard:browser
countOccurrences:array
countVowels:string
currentURL:browser
curry:function
deepFlatten:array
defer:function
detectDeviceType:browser
difference:array
differenceWith:array
digitize:math
distance:math
distinctValuesOfArray:array
dropElements:array
dropRight:array
elementIsVisibleInViewport:browser
elo:math
escapeHTML:string
escapeRegExp:string
everyNth:array
extendHex:utility
factorial:math
factors:math
fibonacci:math
fibonacciCountUntilNum:math
fibonacciUntilNum:math
filterNonUnique:array
flatten:array
flattenDepth:array
flip:adapter
fromCamelCase:string
functionName:function
gcd:math
geometricProgression:math
getDaysDiffBetweenDates:date
getScrollPosition:browser
getStyle:browser
getType:utility
getURLParameters:utility
groupBy:array
hammingDistance:math
hasClass:browser
hasFlags:node
head:array
hexToRGB:utility
hide:browser
howManyTimes:math
httpsRedirect:browser
initial:array
initialize2DArray:array
initializeArrayWithRange:array
initializeArrayWithValues:array
inRange:math
intersection:array
invertKeyValues:object
isAbsoluteURL:string
isArmstrongNumber:math
isArray:utility
isArrayLike:utility
isBoolean:utility
isDivisible:math
isEven:math
isFunction:utility
isNull:utility
isNumber:utility
isPrime:math
isPrimitive:utility
isPromiseLike:utility
isSorted:array
isString:utility
isSymbol:utility
isTravisCI:node
isValidJSON:utility
join:array
JSONToDate:date
JSONToFile:node
last:array
lcm:math
lowercaseKeys:object
mapObject:array
mask:string
maxN:array
median:math
memoize:function
minN:array
negate:logic
nthElement:array
objectFromPairs:object
objectToPairs:object
once:function
onUserInputChange:browser
orderBy:object
palindrome:string
percentile:math
pick:array
pipeFunctions:adapter
pluralize:string
powerset:math
prettyBytes:utility
primes:math
promisify:adapter
pull:array
pullAtIndex:array
pullAtValue:array
quickSort:array
randomHexColorCode:utility
randomIntegerInRange:math
randomNumberInRange:math
readFileLines:node
redirect:browser
reducedFilter:array
remove:array
repeatString:string
reverseString:string
RGBToHex:utility
round:math
runAsync:browser
runPromisesInSeries:function
sample:array
sampleSize:array
scrollToTop:browser
sdbm:utility
select:object
setStyle:browser
shallowClone:object
show:browser
shuffle:array
similarity:array
size:object
sleep:function
solveRPN:math
sortCharactersInString:string
sortedIndex:array
speechSynthesis:browser
splitLines:string
spreadOver:adapter
standardDeviation:math
sum:math
sumPower:math
symmetricDifference:array
tail:array
take:array
takeRight:array
timeTaken:utility
toCamelCase:string
toDecimalMark:utility
toEnglishDate:date
toggleClass:browser
toKebabCase:string
tomorrow:date
toOrdinalSuffix:utility
toSnakeCase:string
truncateString:string
truthCheckCollection:object
unescapeHTML:string
union:array
untildify:node
UUIDGeneratorBrowser:browser
UUIDGeneratorNode:node
validateNumber:utility
without:array
words:string
yesNo:utility
zip:array
zipObject:array