GT2/Ejectable/node_modules/string-length/index.js

10 lines
305 B
JavaScript
Raw Normal View History

2021-08-16 00:14:59 +00:00
'use strict';
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;