UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

7 lines 156 B
export function trim(text, emptyAsNull) { if (!text) { return text; } var result = text.trim(); return emptyAsNull && !result ? null : result; }