Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
21 lines
641 B
Plaintext
21 lines
641 B
Plaintext
"use strict";
|
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
};
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
const wcwidth_1 = __importDefault(require("./wcwidth"));
|
|
const mk_wcswidth = (pwcs) => {
|
|
let width = 0;
|
|
// eslint-disable-next-line no-plusplus
|
|
for (let i = 0; i < pwcs.length; i++) {
|
|
const charCode = pwcs.charCodeAt(i);
|
|
const w = (0, wcwidth_1.default)(charCode);
|
|
if (w < 0) {
|
|
return -1;
|
|
}
|
|
width += w;
|
|
}
|
|
return width;
|
|
};
|
|
exports.default = mk_wcswidth;
|