lambda-live-debugger
Version:
Debug Lambda functions locally like it is running in the cloud
15 lines (14 loc) • 367 B
JavaScript
/* IMPORT */
import fastStringTruncatedWidth from 'fast-string-truncated-width';
/* HELPERS */
const NO_TRUNCATION = {
limit: Infinity,
ellipsis: '',
ellipsisWidth: 0,
};
/* MAIN */
const fastStringWidth = (input, options = {}) => {
return fastStringTruncatedWidth(input, NO_TRUNCATION, options).width;
};
/* EXPORT */
export default fastStringWidth;