iching-broker-level1/node_modules/string-length/index.js
Christopher Hase 323cea883d
All checks were successful
ci / build (push) Successful in 1m14s
unit tests part 3
2025-03-31 14:27:20 +02:00

19 lines
343 B
JavaScript

'use strict';
const stripAnsi = require('strip-ansi');
const charRegex = require('char-regex');
const stringLength = string => {
if (string === '') {
return 0;
}
const strippedString = stripAnsi(string);
if (strippedString === '') {
return 0;
}
return strippedString.match(charRegex()).length;
};
module.exports = stringLength;