Gazebo_simulation-Frontend/node_modules/string-length/index.js

6 lines
180 B
JavaScript
Raw Permalink Normal View History

2020-12-21 11:29:31 -04:00
'use strict';
const stripAnsi = require('strip-ansi');
const astralRegex = require('astral-regex');
module.exports = input => stripAnsi(input).replace(astralRegex(), ' ').length;