Travis build: 1118 [cron]

This commit is contained in:
30secondsofcode
2019-04-15 15:32:49 +00:00
parent 79763ab63f
commit 11c04593a4
5 changed files with 22 additions and 22 deletions

View File

@ -386,7 +386,7 @@
"archived": false "archived": false
}, },
"meta": { "meta": {
"hash": "1757665e21f074496ca23fcd89eea262546dbdab526fb6e281501fca8caaa42b" "hash": "b9a0897aca121af7d0705cace7673c27b22ffab5e67890a3e1859b7f28df2500"
} }
}, },
{ {
@ -1000,7 +1000,7 @@
"archived": false "archived": false
}, },
"meta": { "meta": {
"hash": "6ab35042dbb8b16be8ea108cf5029b34ac9fb166ca331ad2ed6a52188f5b0ba3" "hash": "0a1e7cfbab47f1f7f8aee9d413bd14f4b84de7672d2481ca4ad9fa6cc2581948"
} }
}, },
{ {
@ -1014,7 +1014,7 @@
"archived": false "archived": false
}, },
"meta": { "meta": {
"hash": "421ed9a64e720bd3ba5969e067f94a3d0c3f515b9e8af5ed420a9bbce48d75cb" "hash": "cee5b129d807482ad41d47f12f4451471964bb5e8e8059cc32b05ffb62706438"
} }
}, },
{ {
@ -3794,7 +3794,7 @@
"archived": false "archived": false
}, },
"meta": { "meta": {
"hash": "2fd54c9fc1fb5b0a981df69501b518d5830ea77544d4d5290c7cc13745ca00ea" "hash": "ec9cb9384817f84cf0bacd62a23b69b2304fa2cf0352b16d3950b21d48c04f11"
} }
}, },
{ {

View File

@ -568,7 +568,7 @@
}, },
"meta": { "meta": {
"archived": false, "archived": false,
"hash": "1757665e21f074496ca23fcd89eea262546dbdab526fb6e281501fca8caaa42b" "hash": "b9a0897aca121af7d0705cace7673c27b22ffab5e67890a3e1859b7f28df2500"
} }
}, },
{ {
@ -1463,7 +1463,7 @@
"type": "snippet", "type": "snippet",
"attributes": { "attributes": {
"fileName": "drop.md", "fileName": "drop.md",
"text": "Returns a new array with `n` elements removed from the left.\n\nUse `Array.prototype.slice()` to slice the remove the specified number of elements from the left.", "text": "Returns a new array with `n` elements removed from the left.\n\nUse `Array.prototype.slice()` to remove the specified number of elements from the left.",
"codeBlocks": { "codeBlocks": {
"es6": "const drop = (arr, n = 1) => arr.slice(n);", "es6": "const drop = (arr, n = 1) => arr.slice(n);",
"es5": "var drop = function drop(arr) {\n var n = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;\n return arr.slice(n);\n};", "es5": "var drop = function drop(arr) {\n var n = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;\n return arr.slice(n);\n};",
@ -1476,7 +1476,7 @@
}, },
"meta": { "meta": {
"archived": false, "archived": false,
"hash": "6ab35042dbb8b16be8ea108cf5029b34ac9fb166ca331ad2ed6a52188f5b0ba3" "hash": "0a1e7cfbab47f1f7f8aee9d413bd14f4b84de7672d2481ca4ad9fa6cc2581948"
} }
}, },
{ {
@ -1484,7 +1484,7 @@
"type": "snippet", "type": "snippet",
"attributes": { "attributes": {
"fileName": "dropRight.md", "fileName": "dropRight.md",
"text": "Returns a new array with `n` elements removed from the right.\n\nUse `Array.prototype.slice()` to slice the remove the specified number of elements from the right.", "text": "Returns a new array with `n` elements removed from the right.\n\nUse `Array.prototype.slice()` to remove the specified number of elements from the right.",
"codeBlocks": { "codeBlocks": {
"es6": "const dropRight = (arr, n = 1) => arr.slice(0, -n);", "es6": "const dropRight = (arr, n = 1) => arr.slice(0, -n);",
"es5": "var dropRight = function dropRight(arr) {\n var n = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;\n return arr.slice(0, -n);\n};", "es5": "var dropRight = function dropRight(arr) {\n var n = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 1;\n return arr.slice(0, -n);\n};",
@ -1497,7 +1497,7 @@
}, },
"meta": { "meta": {
"archived": false, "archived": false,
"hash": "421ed9a64e720bd3ba5969e067f94a3d0c3f515b9e8af5ed420a9bbce48d75cb" "hash": "cee5b129d807482ad41d47f12f4451471964bb5e8e8059cc32b05ffb62706438"
} }
}, },
{ {
@ -5586,7 +5586,7 @@
}, },
"meta": { "meta": {
"archived": false, "archived": false,
"hash": "2fd54c9fc1fb5b0a981df69501b518d5830ea77544d4d5290c7cc13745ca00ea" "hash": "ec9cb9384817f84cf0bacd62a23b69b2304fa2cf0352b16d3950b21d48c04f11"
} }
}, },
{ {

View File

@ -648,14 +648,14 @@
"body": [ "body": [
"const drop = (arr, n = 1) => arr.slice(n);" "const drop = (arr, n = 1) => arr.slice(n);"
], ],
"description": "Returns a new array with `n` elements removed from the left.\n\nUse `Array.prototype.slice()` to slice the remove the specified number of elements from the left" "description": "Returns a new array with `n` elements removed from the left.\n\nUse `Array.prototype.slice()` to remove the specified number of elements from the left"
}, },
"dropRight": { "dropRight": {
"prefix": "30s_dropRight", "prefix": "30s_dropRight",
"body": [ "body": [
"const dropRight = (arr, n = 1) => arr.slice(0, -n);" "const dropRight = (arr, n = 1) => arr.slice(0, -n);"
], ],
"description": "Returns a new array with `n` elements removed from the right.\n\nUse `Array.prototype.slice()` to slice the remove the specified number of elements from the right" "description": "Returns a new array with `n` elements removed from the right.\n\nUse `Array.prototype.slice()` to remove the specified number of elements from the right"
}, },
"dropRightWhile": { "dropRightWhile": {
"prefix": "30s_dropRightWhile", "prefix": "30s_dropRightWhile",