UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 232 B
export function right(text, length) { if (!text || length === undefined || length < 0) { return text; } if (length === 0) { return ''; } return text.length <= length ? text : text.substring(text.length - length); }