frontend/.pnpm-store/v3/files/0d/08e71cff7cddc29b58af2a31436bd9afc9ba967801e1e68ed30226d1e275de1a7206fc74ab83d2e09bd70cfa9275877ea30d6e93bac9fedba6d72bf507b7d1

8 lines
186 B
Plaintext

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