Travis build: 507 [cron]

This commit is contained in:
30secondsofcode
2018-09-22 20:13:16 +00:00
parent 267d198ca3
commit ba31c7cf39
5 changed files with 1639 additions and 1610 deletions

View File

@ -238,6 +238,23 @@
"hash": "3cc34a842404de0aea2752a6b1398b8a0825cb1a359ff36ab5275f7d15eff107"
}
},
{
"id": "pipeLog",
"type": "snippet",
"attributes": {
"fileName": "pipeLog.md",
"text": "Logs a value and returns it.\n\nUse `console.log` to log the supplied value, combined with the `||` operator to return it.",
"codeBlocks": [
"const pipeLog = data => console.log(data) || data;",
"pipeLog(1); // logs `1` and returns `1`"
],
"tags": []
},
"meta": {
"archived": true,
"hash": "da9808c8ba24ab48b5407ccf48053281bf12627cbe6e24c1b820bfb1216384cb"
}
},
{
"id": "quickSort",
"type": "snippet",