All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.butterfaces-ts.butterfaces-util-string.ts Maven / Gradle / Ivy

The newest version!
///

namespace ButterFaces {
    export class String {
        static format(format: string, params: Array): string {
            return format.replace(/{(\d+)}/g, (match: string, num: number) => {
                return ButterFaces.Object.isNullOrUndefined(params[num]) ? match : params[num];
            });
        };
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy