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