Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

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

Compile your Deno project to run on Node.js.
Go to Latest
method CodeBlockWriter.prototype.iterateLastCharCodes
import { CodeBlockWriter } from "https://deno.land/x/deno2node@v1.10.0/src/deps.deno.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