function toArrayimport { toArray } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/src/lang.js"; toArray(value)Converts value to an array. Examples_.toArray({ 'a': 1, 'b': 2 }); // => [1, 2] _.toArray('abc'); // => ['a', 'b', 'c'] _.toArray(1); // => [] _.toArray(null); // => [] ParametersvalueThe value to convert.