UNPKG

@jsverse/transloco

Version:

The internationalization (i18n) library for Angular

9 lines (8 loc) 291 B
/** * @example * * getPipeValue('todos|scoped', 'scoped') [true, 'todos'] * getPipeValue('en|static', 'static') [true, 'en'] * getPipeValue('en', 'static') [false, 'en'] */ export declare function getPipeValue(str: string | undefined, value: string, char?: string): [boolean, string];