UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

8 lines (7 loc) 322 B
export declare class StringUtils { private constructor(); static isNullOrWhitespace(str: string | undefined): boolean; static repeat(str: string, times: number): string; static startsWith(str: string, startsWithString: string): boolean; static endsWith(str: string, endsWithString: string): boolean; }