UNPKG

data-provider-temporary

Version:

Library that helps with server-to-client synchronization of data

9 lines (6 loc) 197 B
'use strict'; var stripAnsi = require('strip-ansi'); module.exports = function (str) { var reAstral = /[\uD800-\uDBFF][\uDC00-\uDFFF]/g; return stripAnsi(str).replace(reAstral, ' ').length; };