UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

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