Travis build: 376

This commit is contained in:
Travis CI
2017-12-27 16:07:58 +00:00
parent 4468af558f
commit 505f61afe1
2 changed files with 4 additions and 4 deletions

View File

@ -1146,7 +1146,7 @@ const currentURL = () => window.location.href;
```
```js
currentUrl() // 'https://google.com'
currentURL() // 'https://google.com'
```
[⬆ back to top](#table-of-contents)
@ -1574,7 +1574,7 @@ const digitize = n => [...'' + n].map(i => parseInt(i));
```
```js
differenceWith([1, 1.2, 1.5, 3], [1.9, 3], (a,b) => Math.round(a) == Math.round(b)) // [1, 1.2]
digitize(123) // [1, 2, 3]
```
[⬆ back to top](#table-of-contents)