Travis build: 1267 [cron]

This commit is contained in:
30secondsofcode
2019-07-01 16:06:43 +00:00
parent d76a5bf575
commit 3933cce671
3 changed files with 6 additions and 6 deletions

View File

@ -1800,7 +1800,7 @@
" (a = [arr, arr.map(fn)]), a[0].reduce((acc, val, ind) => ((acc[val] = a[1][ind]), acc), {})",
" ))();"
],
"description": "Maps the values of an array to an object using a function, where the key-value pairs consist of the original value as the key and the mapped value.\n\nUse an anonymous inner function scope to declare an undefined memory space, using closures to store a return value. Use a new `Array` to store the array with a map of the function over its data set and a comma operator to return a second step, without needing to move from one context to another (due to closures and order of operations)"
"description": "Maps the values of an array to an object using a function, where the key-value pairs consist of the stringified value as the key and the mapped value.\n\nUse an anonymous inner function scope to declare an undefined memory space, using closures to store a return value. Use a new `Array` to store the array with a map of the function over its data set and a comma operator to return a second step, without needing to move from one context to another (due to closures and order of operations)"
},
"mapString": {
"prefix": "30s_mapString",