frontend/.pnpm-store/v3/files/a4/bdf42ddb95554dc31d5d9a9d46a13eeeab94f9a85ad3822a527771fc20abac6497ace09e5c94bf2bc7307e6b8cceaf4a82e5b5056e52f309fe318d80fe7431

8 lines
188 B
Plaintext

"use strict";
module.exports = function () {
var arr = [1, 2, 3, 4, 5];
if (typeof arr.copyWithin !== "function") return false;
return String(arr.copyWithin(1, 3)) === "1,4,5,4,5";
};