Travis build: 733 [cron]

This commit is contained in:
30secondsofcode
2018-11-04 14:15:20 +00:00
parent c37362d482
commit 4012df8f5a
4 changed files with 5 additions and 5 deletions

View File

@ -1426,7 +1426,7 @@
"archived": false "archived": false
}, },
"meta": { "meta": {
"hash": "4a8abb281739c1b068d979b8d49038ea063ece4aa570cc8444926ebd30306ff1" "hash": "047d7aa6776b48b392054fc0addcffa4485904f6281f277426911f3ef475b079"
} }
}, },
{ {

View File

@ -2092,7 +2092,7 @@
"type": "snippet", "type": "snippet",
"attributes": { "attributes": {
"fileName": "getColonTimeFromDate.md", "fileName": "getColonTimeFromDate.md",
"text": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object.", "text": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toTimeString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object.",
"codeBlocks": { "codeBlocks": {
"es6": "const getColonTimeFromDate = date => date.toTimeString().slice(0, 8);", "es6": "const getColonTimeFromDate = date => date.toTimeString().slice(0, 8);",
"es5": "var getColonTimeFromDate = function getColonTimeFromDate(date) {\n return date.toTimeString().slice(0, 8);\n};", "es5": "var getColonTimeFromDate = function getColonTimeFromDate(date) {\n return date.toTimeString().slice(0, 8);\n};",
@ -2105,7 +2105,7 @@
}, },
"meta": { "meta": {
"archived": false, "archived": false,
"hash": "4a8abb281739c1b068d979b8d49038ea063ece4aa570cc8444926ebd30306ff1" "hash": "047d7aa6776b48b392054fc0addcffa4485904f6281f277426911f3ef475b079"
} }
}, },
{ {

View File

@ -2267,7 +2267,7 @@ ok 1180 — hz is a Function
# Test Suites: 100% ██████████, 360 passed, 360 total # Test Suites: 100% ██████████, 360 passed, 360 total
# Tests: 100% ██████████, 1180 passed, 1180 total # Tests: 100% ██████████, 1180 passed, 1180 total
# Time: 29.388s # Time: 30.314s
# Ran all test suites. # Ran all test suites.

View File

@ -951,7 +951,7 @@
"body": [ "body": [
"const getColonTimeFromDate = date => date.toTimeString().slice(0, 8);" "const getColonTimeFromDate = date => date.toTimeString().slice(0, 8);"
], ],
"description": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object" "description": "Returns a string of the form `HH:MM:SS` from a `Date` object.\n\nUse `Date.prototype.toTimeString()` and `String.prototype.slice()` to get the `HH:MM:SS` part of a given `Date` object"
}, },
"getDaysDiffBetweenDates": { "getDaysDiffBetweenDates": {
"prefix": "30s_getDaysDiffBetweenDates", "prefix": "30s_getDaysDiffBetweenDates",