UNPKG

@splidejs/splide

Version:

Splide is a lightweight, flexible and accessible slider/carousel. No dependencies, no Lighthouse errors.

19 lines (15 loc) 459 B
import { forEach } from '../../array'; /** * Formats a string. * * @param string - A string to format. * @param replacements - A replacement or replacements. * * @return A formatted string. */ export function format( string: string, replacements: string | number | Array<string | number> ): string { forEach( replacements, replacement => { string = string.replace( '%s', `${ replacement }` ); } ); return string; }