Create an iterator from each of the arguments.
import { of } from "yta/sync";const arr = [];for (item of of("a", "b", "c")) { arr.push(item);}arr;// => ["a", "b", "c"] Copy
import { of } from "yta/sync";const arr = [];for (item of of("a", "b", "c")) { arr.push(item);}arr;// => ["a", "b", "c"]
Create an iterator from each of the arguments.