Latest
function wrapperToIterator
import { wrapperToIterator } from "https://dotland.deno.dev/x/lodash_es@v0.0.2/mod.ts";

Enables the wrapper to be iterable.

Examples

var wrapped = _([1, 2]);

wrappedSymbol.iterator === wrapped; // => true

Array.from(wrapped); // => [1, 2]