UNPKG

@yookue/ts-lang-utils

Version:

Common lang utilities for typescript

9 lines 205 B
export function getLength(source) { if (source === undefined || source === null) { return 0; } if (typeof source === 'number') { return source.toString().length; } return source.length; }