Initial commit
This commit is contained in:
30
node_modules/power-assert-util-string-width/index.js
generated
vendored
Normal file
30
node_modules/power-assert-util-string-width/index.js
generated
vendored
Normal 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);
|
||||
27
node_modules/power-assert-util-string-width/package.json
generated
vendored
Normal file
27
node_modules/power-assert-util-string-width/package.json
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"name": "power-assert-util-string-width",
|
||||
"description": "calculates width of given string",
|
||||
"version": "1.2.0",
|
||||
"author": {
|
||||
"name": "Takuto Wada",
|
||||
"email": "takuto.wada@gmail.com",
|
||||
"url": "https://github.com/twada"
|
||||
},
|
||||
"dependencies": {
|
||||
"eastasianwidth": "^0.2.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"mocha": "^5.0.0"
|
||||
},
|
||||
"files": [
|
||||
"README.md",
|
||||
"index.js"
|
||||
],
|
||||
"homepage": "https://github.com/twada/power-assert-runtime",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/twada/power-assert-runtime.git"
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user