(contents)
| 16 | * Replace array contents with another array |
| 17 | */ |
| 18 | var setArrayContents = function (contents) { |
| 19 | // Replace values in existing array with values in other array |
| 20 | var args = [0, this.length].concat(contents); |
| 21 | this.splice.apply(this, args); |
| 22 | }; |
| 23 | |
| 24 | /** |
| 25 | * Sets the value at an array index |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…