Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

30
node_modules/power-assert-util-string-width/index.js generated vendored Normal file
View File

@@ -0,0 +1,30 @@
'use strict';
var eaw = require('eastasianwidth');
function stringWidth (ambiguousCharWidth) {
return function widthOf (str) {
var i, code, width = 0;
for(i = 0; i < str.length; i+=1) {
code = eaw.eastAsianWidth(str.charAt(i));
switch(code) {
case 'F':
case 'W':
width += 2;
break;
case 'H':
case 'Na':
case 'N':
width += 1;
break;
case 'A':
width += ambiguousCharWidth;
break;
}
}
return width;
};
}
module.exports = stringWidth(2);
module.exports.narrow = stringWidth(1);