diff --git a/README.md b/README.md index 65f8c6022..7a519d62f 100644 --- a/README.md +++ b/README.md @@ -14,6 +14,10 @@ ## Table of Contents ### Adapter + +
+View contents + * [`call`](#call) * [`collectInto`](#collectinto) * [`flip`](#flip) @@ -21,7 +25,13 @@ * [`promisify`](#promisify) * [`spreadOver`](#spreadover) +
+ ### Array + +
+View contents + * [`arrayGcd`](#arraygcd) * [`arrayLcm`](#arraylcm) * [`arrayMax`](#arraymax) @@ -66,7 +76,13 @@ * [`zip`](#zip) * [`zipObject`](#zipobject) +
+ ### Browser + +
+View contents + * [`arrayToHtmlList`](#arraytohtmllist) * [`bottomVisible`](#bottomvisible) * [`currentURL`](#currenturl) @@ -78,13 +94,25 @@ * [`redirect`](#redirect) * [`scrollToTop`](#scrolltotop) +
+ ### Date + +
+View contents + * [`getDaysDiffBetweenDates`](#getdaysdiffbetweendates) * [`JSONToDate`](#jsontodate) * [`toEnglishDate`](#toenglishdate) * [`tomorrow`](#tomorrow) +
+ ### Function + +
+View contents + * [`chainAsync`](#chainasync) * [`compose`](#compose) * [`curry`](#curry) @@ -92,10 +120,22 @@ * [`runPromisesInSeries`](#runpromisesinseries) * [`sleep`](#sleep) +
+ ### Logic + +
+View contents + * [`negate`](#negate) +
+ ### Math + +
+View contents + * [`arrayAverage`](#arrayaverage) * [`arraySum`](#arraysum) * [`clampNumber`](#clampnumber) @@ -124,14 +164,32 @@ * [`round`](#round) * [`standardDeviation`](#standarddeviation) +
+ ### Media + +
+View contents + * [`speechSynthesis`](#speechsynthesis) +
+ ### Node + +
+View contents + * [`JSONToFile`](#jsontofile) * [`readFileLines`](#readfilelines) +
+ ### Object + +
+View contents + * [`cleanObj`](#cleanobj) * [`objectFromPairs`](#objectfrompairs) * [`objectToPairs`](#objecttopairs) @@ -140,7 +198,13 @@ * [`shallowClone`](#shallowclone) * [`truthCheckCollection`](#truthcheckcollection) +
+ ### String + +
+View contents + * [`anagrams`](#anagrams) * [`capitalize`](#capitalize) * [`capitalizeEveryWord`](#capitalizeeveryword) @@ -156,7 +220,13 @@ * [`truncateString`](#truncatestring) * [`words`](#words) +
+ ### Utility + +
+View contents + * [`coalesce`](#coalesce) * [`coalesceFactory`](#coalescefactory) * [`extendHex`](#extendhex) @@ -177,6 +247,8 @@ * [`UUIDGenerator`](#uuidgenerator) * [`validateNumber`](#validatenumber) +
+ ## Adapter ### call @@ -207,7 +279,6 @@ Promise.resolve([1, 2, 3]) [⬆ Back to top](#table-of-contents) ---- ### collectInto @@ -235,7 +306,6 @@ Pall(p1, p2, p3).then(console.log); [⬆ Back to top](#table-of-contents) ---- ### flip @@ -265,7 +335,6 @@ Object.assign(b, a); // == b [⬆ Back to top](#table-of-contents) ---- ### pipeFunctions @@ -293,7 +362,6 @@ multiplyAndAdd5(5, 2); // 15 [⬆ Back to top](#table-of-contents) ---- ### promisify @@ -324,7 +392,6 @@ delay(2000).then(() => console.log('Hi!')); // // Promise resolves after 2s [⬆ Back to top](#table-of-contents) ---- ### spreadOver @@ -350,7 +417,6 @@ arrayMax([1, 2, 4]); // 4 [⬆ Back to top](#table-of-contents) ---- ## Array ### arrayGcd @@ -379,7 +445,6 @@ arrayGcd([4, 8, 12]); // 4 [⬆ Back to top](#table-of-contents) ---- ### arrayLcm @@ -408,7 +473,6 @@ arrayLcm([4, 8, 12]); // 24 [⬆ Back to top](#table-of-contents) ---- ### arrayMax @@ -432,7 +496,6 @@ arrayMax([10, 1, 5]); // 10 [⬆ Back to top](#table-of-contents) ---- ### arrayMin @@ -456,7 +519,6 @@ arrayMin([10, 1, 5]); // 1 [⬆ Back to top](#table-of-contents) ---- ### chunk @@ -485,7 +547,6 @@ chunk([1, 2, 3, 4, 5], 2); // [[1,2],[3,4],[5]] [⬆ Back to top](#table-of-contents) ---- ### compact @@ -509,7 +570,6 @@ compact([0, 1, false, 2, '', 3, 'a', 'e' * 23, NaN, 's', 34]); // [ 1, 2, 3, 'a' [⬆ Back to top](#table-of-contents) ---- ### countOccurrences @@ -533,7 +593,6 @@ countOccurrences([1, 1, 2, 1, 2, 3], 1); // 3 [⬆ Back to top](#table-of-contents) ---- ### deepFlatten @@ -559,7 +618,6 @@ deepFlatten([1, [2], [[3], 4], 5]); // [1,2,3,4,5] [⬆ Back to top](#table-of-contents) ---- ### difference @@ -586,7 +644,6 @@ difference([1, 2, 3], [1, 2, 4]); // [3] [⬆ Back to top](#table-of-contents) ---- ### differenceWith @@ -610,7 +667,6 @@ differenceWith([1, 1.2, 1.5, 3], [1.9, 3], (a, b) => Math.round(a) == Math.round [⬆ Back to top](#table-of-contents) ---- ### distinctValuesOfArray @@ -634,7 +690,6 @@ distinctValuesOfArray([1, 2, 2, 3, 4, 4, 5]); // [1,2,3,4,5] [⬆ Back to top](#table-of-contents) ---- ### dropElements @@ -662,7 +717,6 @@ dropElements([1, 2, 3, 4], n => n >= 3); // [3,4] [⬆ Back to top](#table-of-contents) ---- ### dropRight @@ -688,7 +742,6 @@ dropRight([1, 2, 3], 42); // [] [⬆ Back to top](#table-of-contents) ---- ### everyNth @@ -712,7 +765,6 @@ everyNth([1, 2, 3, 4, 5, 6], 2); // [ 2, 4, 6 ] [⬆ Back to top](#table-of-contents) ---- ### filterNonUnique @@ -736,7 +788,6 @@ filterNonUnique([1, 2, 2, 3, 4, 4, 5]); // [1,3,5] [⬆ Back to top](#table-of-contents) ---- ### flatten @@ -760,7 +811,6 @@ flatten([1, [2], 3, 4]); // [1,2,3,4] [⬆ Back to top](#table-of-contents) ---- ### flattenDepth @@ -790,7 +840,6 @@ flattenDepth([1, [2], 3, 4]); // [1,2,3,4] [⬆ Back to top](#table-of-contents) ---- ### groupBy @@ -820,7 +869,6 @@ groupBy(['one', 'two', 'three'], 'length'); // {3: ['one', 'two'], 5: ['three']} [⬆ Back to top](#table-of-contents) ---- ### head @@ -844,7 +892,6 @@ head([1, 2, 3]); // 1 [⬆ Back to top](#table-of-contents) ---- ### initial @@ -868,7 +915,6 @@ initial([1, 2, 3]); // [1,2] [⬆ Back to top](#table-of-contents) ---- ### initialize2DArray @@ -895,7 +941,6 @@ initialize2DArray(2, 2, 0); // [[0,0], [0,0]] [⬆ Back to top](#table-of-contents) ---- ### initializeArrayWithRange @@ -922,7 +967,6 @@ initializeArrayWithRange(7, 3); // [3,4,5,6,7] [⬆ Back to top](#table-of-contents) ---- ### initializeArrayWithValues @@ -947,7 +991,6 @@ initializeArrayWithValues(5, 2); // [2,2,2,2,2] [⬆ Back to top](#table-of-contents) ---- ### intersection @@ -974,7 +1017,6 @@ intersection([1, 2, 3], [4, 3, 2]); // [2,3] [⬆ Back to top](#table-of-contents) ---- ### last @@ -998,7 +1040,6 @@ last([1, 2, 3]); // 3 [⬆ Back to top](#table-of-contents) ---- ### mapObject @@ -1026,7 +1067,6 @@ squareIt([1, 2, 3]); // { 1: 1, 2: 4, 3: 9 } [⬆ Back to top](#table-of-contents) ---- ### nthElement @@ -1053,7 +1093,6 @@ nthElement(['a', 'b', 'b'], -3); // 'a' [⬆ Back to top](#table-of-contents) ---- ### pick @@ -1078,7 +1117,6 @@ pick({ a: 1, b: '2', c: 3 }, ['a', 'c']); // { 'a': 1, 'c': 3 } [⬆ Back to top](#table-of-contents) ---- ### pull @@ -1116,7 +1154,6 @@ console.log(myArray2); // [ 'b', 'b' ] [⬆ Back to top](#table-of-contents) ---- ### pullAtIndex @@ -1154,7 +1191,6 @@ console.log(pulled); // [ 'b', 'd' ] [⬆ Back to top](#table-of-contents) ---- ### pullAtValue @@ -1190,7 +1226,6 @@ console.log(pulled); // [ 'b', 'd' ] [⬆ Back to top](#table-of-contents) ---- ### remove @@ -1221,7 +1256,6 @@ remove([1, 2, 3, 4], n => n % 2 == 0); // [2, 4] [⬆ Back to top](#table-of-contents) ---- ### sample @@ -1246,7 +1280,6 @@ sample([3, 7, 9, 11]); // 9 [⬆ Back to top](#table-of-contents) ---- ### shuffle @@ -1279,7 +1312,6 @@ console.log(foo); // [1,2,3] [⬆ Back to top](#table-of-contents) ---- ### similarity @@ -1303,7 +1335,6 @@ similarity([1, 2, 3], [1, 2, 4]); // [1,2] [⬆ Back to top](#table-of-contents) ---- ### symmetricDifference @@ -1331,7 +1362,6 @@ symmetricDifference([1, 2, 3], [1, 2, 4]); // [3,4] [⬆ Back to top](#table-of-contents) ---- ### tail @@ -1356,7 +1386,6 @@ tail([1]); // [1] [⬆ Back to top](#table-of-contents) ---- ### take @@ -1381,7 +1410,6 @@ take([1, 2, 3], 0); // [] [⬆ Back to top](#table-of-contents) ---- ### takeRight @@ -1406,7 +1434,6 @@ takeRight([1, 2, 3]); // [3] [⬆ Back to top](#table-of-contents) ---- ### union @@ -1430,7 +1457,6 @@ union([1, 2, 3], [4, 3, 2]); // [1,2,3,4] [⬆ Back to top](#table-of-contents) ---- ### without @@ -1456,7 +1482,6 @@ without([2, 1, 2, 3], 1, 2); // [3] [⬆ Back to top](#table-of-contents) ---- ### zip @@ -1488,7 +1513,6 @@ zip(['a'], [1, 2], [true, false]); // [['a', 1, true], [undefined, 2, false]] [⬆ Back to top](#table-of-contents) ---- ### zipObject @@ -1514,7 +1538,6 @@ zipObject(['a', 'b'], [1, 2, 3]); // {a: 1, b: 2} [⬆ Back to top](#table-of-contents) ---- ## Browser ### arrayToHtmlList @@ -1540,7 +1563,6 @@ arrayToHtmlList(['item 1', 'item 2'], 'myListID'); [⬆ Back to top](#table-of-contents) ---- ### bottomVisible @@ -1566,7 +1588,6 @@ bottomVisible(); // true [⬆ Back to top](#table-of-contents) ---- ### currentURL @@ -1590,7 +1611,6 @@ currentURL(); // 'https://google.com' [⬆ Back to top](#table-of-contents) ---- ### detectDeviceType @@ -1618,7 +1638,6 @@ detectDeviceType(); // "Desktop" [⬆ Back to top](#table-of-contents) ---- ### elementIsVisibleInViewport @@ -1654,7 +1673,6 @@ elementIsVisibleInViewport(el, true); // true // (partially visible) [⬆ Back to top](#table-of-contents) ---- ### getScrollPosition @@ -1682,7 +1700,6 @@ getScrollPosition(); // {x: 0, y: 200} [⬆ Back to top](#table-of-contents) ---- ### getURLParameters @@ -1710,7 +1727,6 @@ getURLParameters('http://url.com/page?name=Adam&surname=Smith'); // {name: 'Adam [⬆ Back to top](#table-of-contents) ---- ### httpsRedirect @@ -1732,7 +1748,6 @@ const httpsRedirect = () => { [⬆ Back to top](#table-of-contents) ---- ### redirect @@ -1758,7 +1773,6 @@ redirect('https://google.com'); [⬆ Back to top](#table-of-contents) ---- ### scrollToTop @@ -1789,7 +1803,6 @@ scrollToTop(); [⬆ Back to top](#table-of-contents) ---- ## Date ### getDaysDiffBetweenDates @@ -1815,7 +1828,6 @@ getDaysDiffBetweenDates(new Date('2017-12-13'), new Date('2017-12-22')); // 9 [⬆ Back to top](#table-of-contents) ---- ### JSONToDate @@ -1842,7 +1854,6 @@ JSONToDate(/Date(1489525200000)/); // "14/3/2017" [⬆ Back to top](#table-of-contents) ---- ### toEnglishDate @@ -1874,7 +1885,6 @@ toEnglishDate('09/21/2010'); // '21/09/2010' [⬆ Back to top](#table-of-contents) ---- ### tomorrow @@ -1897,7 +1907,6 @@ tomorrow(); // 2017-12-27 (if current date is 2017-12-26) [⬆ Back to top](#table-of-contents) ---- ## Function ### chainAsync @@ -1938,7 +1947,6 @@ chainAsync([ [⬆ Back to top](#table-of-contents) ---- ### compose @@ -1966,7 +1974,6 @@ multiplyAndAdd5(5, 2); // 15 [⬆ Back to top](#table-of-contents) ---- ### curry @@ -1995,7 +2002,6 @@ curry(Math.min, 3)(10)(50)(2); // 2 [⬆ Back to top](#table-of-contents) ---- ### functionName @@ -2019,7 +2025,6 @@ functionName(Math.max); // max (logged in debug channel of console) [⬆ Back to top](#table-of-contents) ---- ### runPromisesInSeries @@ -2044,7 +2049,6 @@ runPromisesInSeries([() => delay(1000), () => delay(2000)]); // //executes each [⬆ Back to top](#table-of-contents) ---- ### sleep @@ -2072,7 +2076,6 @@ async function sleepyWork() { [⬆ Back to top](#table-of-contents) ---- ## Logic ### negate @@ -2098,7 +2101,6 @@ negate(isOdd)(1); // false [⬆ Back to top](#table-of-contents) ---- ## Math ### arrayAverage @@ -2123,7 +2125,6 @@ arrayAverage([1, 2, 3]); // 2 [⬆ Back to top](#table-of-contents) ---- ### arraySum @@ -2147,7 +2148,6 @@ arraySum([1, 2, 3, 4]); // 10 [⬆ Back to top](#table-of-contents) ---- ### clampNumber @@ -2174,7 +2174,6 @@ clampNumber(3, 2, 4); // 3 [⬆ Back to top](#table-of-contents) ---- ### collatz @@ -2199,7 +2198,6 @@ collatz(5); // 16 [⬆ Back to top](#table-of-contents) ---- ### digitize @@ -2224,7 +2222,6 @@ digitize(123); // [1, 2, 3] [⬆ Back to top](#table-of-contents) ---- ### distance @@ -2248,7 +2245,6 @@ distance(1, 1, 2, 3); // 2.23606797749979 [⬆ Back to top](#table-of-contents) ---- ### factorial @@ -2280,7 +2276,6 @@ factorial(6); // 720 [⬆ Back to top](#table-of-contents) ---- ### fibonacci @@ -2309,7 +2304,6 @@ fibonacci(6); // 720 [⬆ Back to top](#table-of-contents) ---- ### fibonacciCountUntilNum @@ -2334,7 +2328,6 @@ fibonacciCountUntilNum(10); // 7 [⬆ Back to top](#table-of-contents) ---- ### fibonacciUntilNum @@ -2366,7 +2359,6 @@ fibonacciCountUntilNum(10); // 7 [⬆ Back to top](#table-of-contents) ---- ### gcd @@ -2392,7 +2384,6 @@ gcd(8, 36); // 4 [⬆ Back to top](#table-of-contents) ---- ### hammingDistance @@ -2417,7 +2408,6 @@ hammingDistance(2, 3); // 1 [⬆ Back to top](#table-of-contents) ---- ### inRange @@ -2448,7 +2438,6 @@ inrange(3, 2); // false [⬆ Back to top](#table-of-contents) ---- ### isArmstrongNumber @@ -2477,7 +2466,6 @@ isArmstrongNumber(56); // false [⬆ Back to top](#table-of-contents) ---- ### isDivisible @@ -2501,7 +2489,6 @@ isDivisible(6, 3); // true [⬆ Back to top](#table-of-contents) ---- ### isEven @@ -2526,7 +2513,6 @@ isEven(3); // false [⬆ Back to top](#table-of-contents) ---- ### isPrime @@ -2556,7 +2542,6 @@ isPrime(12); // false [⬆ Back to top](#table-of-contents) ---- ### lcm @@ -2584,7 +2569,6 @@ lcm(12, 7); // 84 [⬆ Back to top](#table-of-contents) ---- ### median @@ -2614,7 +2598,6 @@ median([0, 10, -2, 7]); // 3.5 [⬆ Back to top](#table-of-contents) ---- ### palindrome @@ -2648,7 +2631,6 @@ palindrome('taco cat'); // true [⬆ Back to top](#table-of-contents) ---- ### percentile @@ -2673,7 +2655,6 @@ percentile([1, 2, 3, 4, 5, 6, 7, 8, 9, 10], 6); // 55 [⬆ Back to top](#table-of-contents) ---- ### powerset @@ -2697,7 +2678,6 @@ powerset([1, 2]); // [[], [1], [2], [2,1]] [⬆ Back to top](#table-of-contents) ---- ### primes @@ -2727,7 +2707,6 @@ primes(10); // [2,3,5,7] [⬆ Back to top](#table-of-contents) ---- ### randomIntegerInRange @@ -2751,7 +2730,6 @@ randomIntegerInRange(0, 5); // 2 [⬆ Back to top](#table-of-contents) ---- ### randomNumberInRange @@ -2775,7 +2753,6 @@ randomNumberInRange(2, 10); // 6.0211363285087005 [⬆ Back to top](#table-of-contents) ---- ### round @@ -2800,7 +2777,6 @@ round(1.005, 2); // 1.01 [⬆ Back to top](#table-of-contents) ---- ### standardDeviation @@ -2835,7 +2811,6 @@ standardDeviation([10, 2, 38, 23, 38, 23, 21], true); // 12.29899614287479 (popu [⬆ Back to top](#table-of-contents) ---- ## Media ### speechSynthesis @@ -2867,7 +2842,6 @@ speechSynthesis('Hello, World'); // // plays the message [⬆ Back to top](#table-of-contents) ---- ## Node ### JSONToFile @@ -2894,7 +2868,6 @@ JSONToFile({ test: 'is passed' }, 'testJsonFile'); // writes the object to 'test [⬆ Back to top](#table-of-contents) ---- ### readFileLines @@ -2934,7 +2907,6 @@ console.log(arr); // ['line1', 'line2', 'line3'] [⬆ Back to top](#table-of-contents) ---- ## Object ### cleanObj @@ -2970,7 +2942,6 @@ cleanObj(testObj, ['a'], 'children'); // { a: 1, children : { a: 1}} [⬆ Back to top](#table-of-contents) ---- ### objectFromPairs @@ -2994,7 +2965,6 @@ objectFromPairs([['a', 1], ['b', 2]]); // {a: 1, b: 2} [⬆ Back to top](#table-of-contents) ---- ### objectToPairs @@ -3018,7 +2988,6 @@ objectToPairs({ a: 1, b: 2 }); // [['a',1],['b',2]]) [⬆ Back to top](#table-of-contents) ---- ### orderBy @@ -3059,7 +3028,6 @@ orderBy(users, ['name', 'age']); // [{name: 'barney', age: 34}, {name: 'barney', [⬆ Back to top](#table-of-contents) ---- ### select @@ -3085,7 +3053,6 @@ select(obj, 'selector.to.val'); // 'val to select' [⬆ Back to top](#table-of-contents) ---- ### shallowClone @@ -3111,7 +3078,6 @@ a === b; // false [⬆ Back to top](#table-of-contents) ---- ### truthCheckCollection @@ -3135,7 +3101,6 @@ truthCheckCollection([{ user: 'Tinky-Winky', sex: 'male' }, { user: 'Dipsy', sex [⬆ Back to top](#table-of-contents) ---- ## String ### anagrams @@ -3172,7 +3137,6 @@ anagrams('abc'); // ['abc','acb','bac','bca','cab','cba'] [⬆ Back to top](#table-of-contents) ---- ### Capitalize @@ -3199,7 +3163,6 @@ capitalize('fooBar', true); // 'Foobar' [⬆ Back to top](#table-of-contents) ---- ### capitalizeEveryWord @@ -3223,7 +3186,6 @@ capitalizeEveryWord('hello world!'); // 'Hello World!' [⬆ Back to top](#table-of-contents) ---- ### countVowels @@ -3248,7 +3210,6 @@ countVowels('gym'); // 0 [⬆ Back to top](#table-of-contents) ---- ### escapeRegExp @@ -3272,7 +3233,6 @@ escapeRegExp('(test)'); // \\(test\\) [⬆ Back to top](#table-of-contents) ---- ### fromCamelCase @@ -3303,7 +3263,6 @@ fromCamelCase('someJavascriptProperty', '_'); // 'some_javascript_property' [⬆ Back to top](#table-of-contents) ---- ### repeatString @@ -3330,7 +3289,6 @@ repeatString('abc'); // 'abcabc' [⬆ Back to top](#table-of-contents) ---- ### reverseString @@ -3359,7 +3317,6 @@ reverseString('foobar'); // 'raboof' [⬆ Back to top](#table-of-contents) ---- ### sortCharactersInString @@ -3387,7 +3344,6 @@ sortCharactersInString('cabbage'); // 'aabbceg' [⬆ Back to top](#table-of-contents) ---- ### toCamelCase @@ -3423,7 +3379,6 @@ toCamelCase('some-mixed_string with spaces_underscores-and-hyphens'); // 'someMi [⬆ Back to top](#table-of-contents) ---- ### toKebabCase @@ -3457,7 +3412,6 @@ toKebabCase('IAmListeningToFMWhileLoadingDifferentURLOnMyBrowserAndAlsoEditingSo [⬆ Back to top](#table-of-contents) ---- ### toSnakeCase @@ -3493,7 +3447,6 @@ toSnakeCase('IAmListeningToFMWhileLoadingDifferentURLOnMyBrowserAndAlsoEditingSo [⬆ Back to top](#table-of-contents) ---- ### truncateString @@ -3519,7 +3472,6 @@ truncateString('boomerang', 7); // 'boom...' [⬆ Back to top](#table-of-contents) ---- ### words @@ -3545,7 +3497,6 @@ words('python, javaScript & coffee'); // ["python", "javaScript", "coffee"] [⬆ Back to top](#table-of-contents) ---- ## Utility ### coalesce @@ -3570,7 +3521,6 @@ coalesce(null, undefined, '', NaN, 'Waldo'); // "" [⬆ Back to top](#table-of-contents) ---- ### coalesceFactory @@ -3595,7 +3545,6 @@ customCoalesce(undefined, null, NaN, '', 'Waldo'); // "Waldo" [⬆ Back to top](#table-of-contents) ---- ### extendHex @@ -3626,7 +3575,6 @@ extendHex('05a'); // '#0055aa' [⬆ Back to top](#table-of-contents) ---- ### getType @@ -3651,7 +3599,6 @@ getType(new Set([1, 2, 3])); // "set" [⬆ Back to top](#table-of-contents) ---- ### hexToRGB @@ -3695,7 +3642,6 @@ hexToRGB('#fff'); // 'rgb(255, 255, 255)' [⬆ Back to top](#table-of-contents) ---- ### isArray @@ -3720,7 +3666,6 @@ isArray([1]); // true [⬆ Back to top](#table-of-contents) ---- ### isBoolean @@ -3745,7 +3690,6 @@ isBoolean(false); // true [⬆ Back to top](#table-of-contents) ---- ### isFunction @@ -3770,7 +3714,6 @@ isFunction(x => x); // true [⬆ Back to top](#table-of-contents) ---- ### isNumber @@ -3794,7 +3737,6 @@ isNumber(1); // true [⬆ Back to top](#table-of-contents) ---- ### isString @@ -3819,7 +3761,6 @@ isString('10'); // true [⬆ Back to top](#table-of-contents) ---- ### isSymbol @@ -3844,7 +3785,6 @@ isSymbol(Symbol('x')); // true [⬆ Back to top](#table-of-contents) ---- ### randomHexColorCode @@ -3873,7 +3813,6 @@ randomHexColorCode(); // "#4144c6" [⬆ Back to top](#table-of-contents) ---- ### RGBToHex @@ -3897,7 +3836,6 @@ RGBToHex(255, 165, 1); // 'ffa501' [⬆ Back to top](#table-of-contents) ---- ### sbdm @@ -3929,7 +3867,6 @@ console.log(sdbm('age')); // 808122783 [⬆ Back to top](#table-of-contents) ---- ### timeTaken @@ -3959,7 +3896,6 @@ timeTaken(() => Math.pow(2, 10)); // 1024 [⬆ Back to top](#table-of-contents) ---- ### toDecimalMark @@ -3981,7 +3917,6 @@ toDecimalMark(12305030388.9087); // "12,305,030,388.9087" [⬆ Back to top](#table-of-contents) ---- ### toOrdinalSuffix @@ -4016,7 +3951,6 @@ toOrdinalSuffix('123'); // "123rd" [⬆ Back to top](#table-of-contents) ---- ### UUIDGenerator @@ -4043,7 +3977,6 @@ UUIDGenerator(); // '7982fcfe-5721-4632-bede-6000885be57d' [⬆ Back to top](#table-of-contents) ---- ### validateNumber @@ -4069,7 +4002,6 @@ validateNumber('10'); // true [⬆ Back to top](#table-of-contents) ---- ## Credits