This commit is contained in:
Brian Ng
2017-01-11 17:12:09 -06:00
parent a749907bc2
commit 46d9339488

View File

@@ -1,4 +1,4 @@
const assign = ([...arr], index, value) => {
const assign = function([...arr], index, value) {
arr[index] = value;
return arr;
}