UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

5 lines 209 B
import { endsWith } from "./endsWith"; import { isEmpty } from "./isEmpty"; export function appendIfMissing(text, suffix) { return !text || isEmpty(suffix) || endsWith(text, suffix) ? text : text + suffix; }