MCPcopy Create free account
hub / github.com/TruthHun/BookStack / arrayMove

Function arrayMove

static/word2md/mammoth.browser.js:8118–8123  ·  view source on GitHub ↗
(src, srcIndex, dst, dstIndex, len)

Source from the content-addressed store, hash-verified

8116},{"./es5":51,"./util":74}],64:[function(require,module,exports){
8117"use strict";
8118function arrayMove(src, srcIndex, dst, dstIndex, len) {
8119 for (var j = 0; j < len; ++j) {
8120 dst[j + dstIndex] = src[j + srcIndex];
8121 src[j + srcIndex] = void 0;
8122 }
8123}
8124
8125function Queue(capacity) {
8126 this._capacity = capacity;

Callers 1

mammoth.browser.jsFile · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected