UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

3 lines 92 B
export function defaultIfEmpty(text, defaultValue) { return !text ? defaultValue : text; }