function walkimport { walk } from "https://dotland.deno.dev/x/fluentci@v0.13.0/deps.ts"; walk(root: string | URL, unnamed 1?: WalkOptions): AsyncIterableIterator<WalkEntry>Walks the file tree rooted at root, yielding each file or directory in the tree filtered according to the given options. ExamplesExample 1 import { walk } from "https://deno.land/std@$STD_VERSION/fs/walk.ts"; import { assert } from "https://deno.land/std@$STD_VERSION/assert/assert.ts"; for await (const entry of walk(".")) { console.log(entry.path); assert(entry.isFile); } Parametersroot: string | URLoptionalunnamed 1: WalkOptions = [UNSUPPORTED]ReturnsAsyncIterableIterator<WalkEntry>