UNPKG

alks

Version:
9 lines (7 loc) 148 B
import { isEmpty } from 'underscore'; export function trim(str: string) { if (isEmpty(str)) { return str; } return String(str).trim(); }