Skip to main content
Module

x/deno2node/src/deps.deno.ts>CodeBlockWriter#iterateLastChars

Compile your Deno project to run on Node.js.
Go to Latest
method CodeBlockWriter.prototype.iterateLastChars
import { CodeBlockWriter } from "https://deno.land/x/deno2node@v1.7.1/src/deps.deno.ts";

Iterates over the writer characters in reverse order. The iteration stops when a non-null or undefined value is returned from the action. The returned value is then returned by the method.

Parameters

action: (char: string, index: number) => T | undefined

Returns

T | undefined