UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

8 lines (7 loc) 238 B
/** * Return a string adding N times of fillchar or blanks to the left side of target * @param length * @param fillChar * @return string */ export declare const padLeft: (target: string, length: number, fillChar?: string) => string;