UNPKG

terriajs

Version:

Geospatial data visualization platform.

8 lines (7 loc) 200 B
/** * Ensures that the given `str` ends with the given `char`. * */ export default function ensureSuffix(str: string, char: string): string { return str.endsWith(char) ? str : `${str}${char}`; }