BE-SPAN/node_modules/es5-ext/array/from/is-implemented.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07:00

10 lines
243 B
JavaScript

"use strict";
module.exports = function () {
var from = Array.from, arr, result;
if (typeof from !== "function") return false;
arr = ["raz", "dwa"];
result = from(arr);
return Boolean(result && result !== arr && result[1] === "dwa");
};