UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

8 lines 201 B
import { isEmpty } from "./isEmpty"; export function trim(text, emptyAsNull) { if (!text) { return text; } var result = text.trim(); return emptyAsNull && isEmpty(result) ? null : result; }