UNPKG

generaltranslation

Version:

A language toolkit for AI developers

6 lines (5 loc) 212 B
/** * Given an ICU string adds identifiers to each _gt_ placeholder * indexVars('Hello {_gt_} {_gt_} World') => 'Hello {_gt_1_} {_gt_2_} World' */ export declare function indexVars(icuString: string): string;