Travis build: 1043

This commit is contained in:
30secondsofcode
2018-01-05 14:56:41 +00:00
parent 94ca50bb50
commit 8ebd261e85
3 changed files with 8 additions and 5 deletions

View File

@ -143,7 +143,7 @@ average(1, 2, 3);
* [`arrayToHtmlList`](#arraytohtmllist)
* [`bottomVisible`](#bottomvisible)
* [`copyToClipboard`](#copytoclipboard)
* [`copyToClipboard`](#copytoclipboard-)
* [`currentURL`](#currenturl)
* [`detectDeviceType`](#detectdevicetype)
* [`elementIsVisibleInViewport`](#elementisvisibleinviewport)
@ -152,9 +152,9 @@ average(1, 2, 3);
* [`hasClass`](#hasclass)
* [`hide`](#hide)
* [`httpsRedirect`](#httpsredirect)
* [`onUserInputChange`](#onuserinputchange)
* [`onUserInputChange`](#onuserinputchange-)
* [`redirect`](#redirect)
* [`runAsync`](#runasync)
* [`runAsync`](#runasync-)
* [`scrollToTop`](#scrolltotop)
* [`setStyle`](#setstyle)
* [`show`](#show)
@ -210,7 +210,7 @@ average(1, 2, 3);
* [`clampNumber`](#clampnumber)
* [`digitize`](#digitize)
* [`distance`](#distance)
* [`elo`](#elo)
* [`elo`](#elo-)
* [`factorial`](#factorial)
* [`fibonacci`](#fibonacci)
* [`gcd`](#gcd)
@ -327,7 +327,7 @@ average(1, 2, 3);
* [`coalesceFactory`](#coalescefactory)
* [`extendHex`](#extendhex)
* [`getURLParameters`](#geturlparameters)
* [`hexToRGB`](#hextorgb)
* [`hexToRGB`](#hextorgb-)
* [`prettyBytes`](#prettybytes)
* [`randomHexColorCode`](#randomhexcolorcode)
* [`RGBToHex`](#rgbtohex)
@ -4121,6 +4121,7 @@ Combine characters to get a string using `String.join('')`.
```js
const reverseString = str =>
[..str]
.reverse()