UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

4 lines 137 B
import { isEmpty } from "./isEmpty"; export function defaultIfEmpty(text, defaultValue) { return isEmpty(text) ? defaultValue : text; }