UNPKG

@poppinss/string

Version:

A collection of helpers to perform operations on/related to a string value

9 lines (8 loc) 221 B
/** * A simple function to interpolate values inside curly braces. * * ``` * interpolate('hello {{ username }}', { username: 'virk' }) * ``` */ export declare function interpolate(input: string, data: any): string;