innovationDriveApp/node_modules/es5-ext/array/#/copy-within/implement.js
2018-07-08 19:21:40 +10:00

10 lines
204 B
JavaScript

"use strict";
if (!require("./is-implemented")()) {
Object.defineProperty(Array.prototype, "copyWithin", {
value: require("./shim"),
configurable: true,
enumerable: false,
writable: true
});
}