telebot
Version:
The easy way to write Telegram bots.
10 lines (7 loc) • 305 B
JavaScript
;
const stripAnsi = require('strip-ansi');
const astralRegex = require('astral-regex');
const stringLength = string => stripAnsi(string).replace(astralRegex(), ' ').length;
module.exports = stringLength;
// TODO: Remove this for the next major release
module.exports.default = stringLength;