UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 189 B
export function left(text, length) { if (!text || length === undefined || length < 0) { return text; } if (length === 0) { return ''; } return text.substring(0, length); }