Skip to main content
Module

x/ts_morph/ts_morph.js>CodeBlockWriter#iterateLastCharCodes

TypeScript Compiler API wrapper for static analysis and programmatic code changes.
Very Popular
Go to Latest
method CodeBlockWriter.prototype.iterateLastCharCodes
Re-export
import { CodeBlockWriter } from "https://deno.land/x/ts_morph@15.1.0/ts_morph.js";

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