Travis build: 198 [cron]

This commit is contained in:
30secondsofcode
2018-08-06 19:53:51 +00:00
parent 7f14c23f2d
commit 3dbc7e4805
3 changed files with 1677 additions and 1639 deletions

View File

@ -20,6 +20,26 @@
"hash": "8a036b5ffee127e5456d59e36f3c9abb24f1692f6a398b61c20ebacaae8380e4"
}
},
{
"id": "allEqual",
"type": "snippet",
"attributes": {
"fileName": "allEqual.md",
"text": "Check if all elements are equal\n\nUse `Array.every()` to check if all the elements of the array are the same as the first one.",
"codeBlocks": [
"const allEqual = arr => arr.every(val => val === arr[0]);",
"allEqual([1, 2, 3, 4, 5, 6]); // false\nallEqual([1, 1, 1, 1]); // true"
],
"tags": [
"array",
"function"
]
},
"meta": {
"archived": false,
"hash": "aa5122e8272d9ef81a634e960da9b0ddbe6d670cb3e801d7ffd17ba36cd1630a"
}
},
{
"id": "any",
"type": "snippet",