7ad2aa66bb
Co-authored-by: tbarnes94 <tbarnes94@users.noreply.github.com>
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
'use strict';
|
|
const stripAnsi = require('strip-ansi');
|
|
const charRegex = require('char-regex');
|
|
|
|
const stringLength = string => {
|
|
if (string === '') {
|
|
return 0;
|
|
}
|
|
|
|
return stripAnsi(string).match(charRegex()).length;
|
|
};
|
|
|
|
module.exports = stringLength;
|