MCPcopy Create free account
hub / github.com/play-co/devkit / arrayMove

Function arrayMove

src/web/util/bluebird.js:3086–3091  ·  view source on GitHub ↗
(src, srcIndex, dst, dstIndex, len)

Source from the content-addressed store, hash-verified

3084},{"./errors":11,"./promise_resolver.js":22,"./util.js":30}],24:[function(_dereq_,module,exports){
3085"use strict";
3086function arrayMove(src, srcIndex, dst, dstIndex, len) {
3087 for (var j = 0; j < len; ++j) {
3088 dst[j + dstIndex] = src[j + srcIndex];
3089 src[j + srcIndex] = void 0;
3090 }
3091}
3092
3093function Queue(capacity) {
3094 this._capacity = capacity;

Callers 1

bluebird.jsFile · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…