Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
method CodeBlockWriter.prototype.iterateLastCharCodes
import { CodeBlockWriter } from "https://deno.land/x/dnt@0.33.1/lib/mod.deps.ts";

Iterates over the writer character char codes 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: (charCode: number, index: number) => T | undefined

Returns

T | undefined