EasyAgent/node_modules/fast-string-width/dist/index.js
2026-02-28 03:00:08 +08:00

15 lines
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;