Skip to main content
Module

x/ts_morph/mod.ts>CodeBlockWriter#iterateLastChars

TypeScript Compiler API wrapper for static analysis and programmatic code changes.
Very Popular
Go to Latest
method CodeBlockWriter.prototype.iterateLastChars
import { CodeBlockWriter } from "https://deno.land/x/ts_morph@15.1.0/mod.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