Updated dependencies and fixed audit

This commit is contained in:
Drew Heavner
2020-11-12 18:00:41 -05:00
parent ac7314fa18
commit ff34f681c1
2041 changed files with 15676 additions and 190739 deletions
+8 -5
View File
@@ -1,18 +1,21 @@
'use strict';
const stripAnsi = require('strip-ansi');
const isFullwidthCodePoint = require('is-fullwidth-code-point');
const emojiRegex = require('emoji-regex')();
module.exports = str => {
if (typeof str !== 'string' || str.length === 0) {
module.exports = input => {
input = input.replace(emojiRegex, ' ');
if (typeof input !== 'string' || input.length === 0) {
return 0;
}
str = stripAnsi(str);
input = stripAnsi(input);
let width = 0;
for (let i = 0; i < str.length; i++) {
const code = str.codePointAt(i);
for (let i = 0; i < input.length; i++) {
const code = input.codePointAt(i);
// Ignore control characters
if (code <= 0x1F || (code >= 0x7F && code <= 0x9F)) {