UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

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