'use strict';conststripAnsi=require('strip-ansi');constastralRegex=require('astral-regex');conststringLength=string=>stripAnsi(string).replace(astralRegex(),' ').length;module.exports=stringLength;// TODO: Remove this for the next major releasemodule.exports.default=stringLength;