@trayai/tray-sync-cli 0.0.11 → 0.0.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/commands/auth.js +1 -21
- package/dist/commands/init.js +1 -1
- package/dist/commands/promote.js +7 -5
- package/dist/lib/promoteReport.js +0 -21
- package/dist/views/auth/auth.js +22 -0
- package/dist/views/auth/auth.v2.js +30 -0
- package/dist/views/init/init.v2.js +20 -0
- package/dist/views/promote/promote.v2.js +37 -13
- package/dist/views/shared.js +2 -1
- package/package.json +5 -4
- package/node_modules/ansi-regex/index.d.ts +0 -33
- package/node_modules/ansi-regex/index.js +0 -14
- package/node_modules/ansi-regex/license +0 -9
- package/node_modules/ansi-regex/package.json +0 -61
- package/node_modules/ansi-regex/readme.md +0 -66
- package/node_modules/get-east-asian-width/index.d.ts +0 -60
- package/node_modules/get-east-asian-width/index.js +0 -30
- package/node_modules/get-east-asian-width/license +0 -9
- package/node_modules/get-east-asian-width/lookup-data.js +0 -21
- package/node_modules/get-east-asian-width/lookup.js +0 -138
- package/node_modules/get-east-asian-width/package.json +0 -71
- package/node_modules/get-east-asian-width/readme.md +0 -65
- package/node_modules/get-east-asian-width/utilities.js +0 -24
- package/node_modules/string-width/index.d.ts +0 -39
- package/node_modules/string-width/index.js +0 -207
- package/node_modules/string-width/license +0 -9
- package/node_modules/string-width/package.json +0 -65
- package/node_modules/string-width/readme.md +0 -66
- package/node_modules/strip-ansi/index.d.ts +0 -15
- package/node_modules/strip-ansi/index.js +0 -19
- package/node_modules/strip-ansi/license +0 -9
- package/node_modules/strip-ansi/package.json +0 -59
- package/node_modules/strip-ansi/readme.md +0 -37
|
@@ -1,138 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
ambiguousMinimalCodePoint,
|
|
3
|
-
ambiguousMaximumCodePoint,
|
|
4
|
-
ambiguousRanges,
|
|
5
|
-
|
|
6
|
-
fullwidthMinimalCodePoint,
|
|
7
|
-
fullwidthMaximumCodePoint,
|
|
8
|
-
fullwidthRanges,
|
|
9
|
-
|
|
10
|
-
halfwidthMinimalCodePoint,
|
|
11
|
-
halfwidthMaximumCodePoint,
|
|
12
|
-
halfwidthRanges,
|
|
13
|
-
|
|
14
|
-
narrowMinimalCodePoint,
|
|
15
|
-
narrowMaximumCodePoint,
|
|
16
|
-
narrowRanges,
|
|
17
|
-
|
|
18
|
-
wideMinimalCodePoint,
|
|
19
|
-
wideMaximumCodePoint,
|
|
20
|
-
wideRanges,
|
|
21
|
-
} from './lookup-data.js';
|
|
22
|
-
import {isInRange} from './utilities.js';
|
|
23
|
-
|
|
24
|
-
const commonCjkCodePoint = 0x4E_00;
|
|
25
|
-
const [wideFastPathStart, wideFastPathEnd] = /* #__PURE__ */ findWideFastPathRange(wideRanges);
|
|
26
|
-
|
|
27
|
-
// Use a hot-path range so common `isWide` calls can skip binary search.
|
|
28
|
-
// The range containing U+4E00 covers common CJK ideographs;
|
|
29
|
-
// fallback to the largest range for resilience to Unicode table changes.
|
|
30
|
-
function findWideFastPathRange(ranges) {
|
|
31
|
-
let fastPathStart = ranges[0];
|
|
32
|
-
let fastPathEnd = ranges[1];
|
|
33
|
-
|
|
34
|
-
for (let index = 0; index < ranges.length; index += 2) {
|
|
35
|
-
const start = ranges[index];
|
|
36
|
-
const end = ranges[index + 1];
|
|
37
|
-
|
|
38
|
-
if (
|
|
39
|
-
commonCjkCodePoint >= start
|
|
40
|
-
&& commonCjkCodePoint <= end
|
|
41
|
-
) {
|
|
42
|
-
return [start, end];
|
|
43
|
-
}
|
|
44
|
-
|
|
45
|
-
if ((end - start) > (fastPathEnd - fastPathStart)) {
|
|
46
|
-
fastPathStart = start;
|
|
47
|
-
fastPathEnd = end;
|
|
48
|
-
}
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
return [fastPathStart, fastPathEnd];
|
|
52
|
-
}
|
|
53
|
-
|
|
54
|
-
export const isAmbiguous = codePoint => {
|
|
55
|
-
if (
|
|
56
|
-
codePoint < ambiguousMinimalCodePoint
|
|
57
|
-
|| codePoint > ambiguousMaximumCodePoint
|
|
58
|
-
) {
|
|
59
|
-
return false;
|
|
60
|
-
}
|
|
61
|
-
|
|
62
|
-
return isInRange(ambiguousRanges, codePoint);
|
|
63
|
-
};
|
|
64
|
-
|
|
65
|
-
export const isFullWidth = codePoint => {
|
|
66
|
-
if (
|
|
67
|
-
codePoint < fullwidthMinimalCodePoint
|
|
68
|
-
|| codePoint > fullwidthMaximumCodePoint
|
|
69
|
-
) {
|
|
70
|
-
return false;
|
|
71
|
-
}
|
|
72
|
-
|
|
73
|
-
return isInRange(fullwidthRanges, codePoint);
|
|
74
|
-
};
|
|
75
|
-
|
|
76
|
-
const isHalfWidth = codePoint => {
|
|
77
|
-
if (
|
|
78
|
-
codePoint < halfwidthMinimalCodePoint
|
|
79
|
-
|| codePoint > halfwidthMaximumCodePoint
|
|
80
|
-
) {
|
|
81
|
-
return false;
|
|
82
|
-
}
|
|
83
|
-
|
|
84
|
-
return isInRange(halfwidthRanges, codePoint);
|
|
85
|
-
};
|
|
86
|
-
|
|
87
|
-
const isNarrow = codePoint => {
|
|
88
|
-
if (
|
|
89
|
-
codePoint < narrowMinimalCodePoint
|
|
90
|
-
|| codePoint > narrowMaximumCodePoint
|
|
91
|
-
) {
|
|
92
|
-
return false;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
return isInRange(narrowRanges, codePoint);
|
|
96
|
-
};
|
|
97
|
-
|
|
98
|
-
export const isWide = codePoint => {
|
|
99
|
-
if (
|
|
100
|
-
codePoint >= wideFastPathStart
|
|
101
|
-
&& codePoint <= wideFastPathEnd
|
|
102
|
-
) {
|
|
103
|
-
return true;
|
|
104
|
-
}
|
|
105
|
-
|
|
106
|
-
if (
|
|
107
|
-
codePoint < wideMinimalCodePoint
|
|
108
|
-
|| codePoint > wideMaximumCodePoint
|
|
109
|
-
) {
|
|
110
|
-
return false;
|
|
111
|
-
}
|
|
112
|
-
|
|
113
|
-
return isInRange(wideRanges, codePoint);
|
|
114
|
-
};
|
|
115
|
-
|
|
116
|
-
export function getCategory(codePoint) {
|
|
117
|
-
if (isAmbiguous(codePoint)) {
|
|
118
|
-
return 'ambiguous';
|
|
119
|
-
}
|
|
120
|
-
|
|
121
|
-
if (isFullWidth(codePoint)) {
|
|
122
|
-
return 'fullwidth';
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
if (isHalfWidth(codePoint)) {
|
|
126
|
-
return 'halfwidth';
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
if (isNarrow(codePoint)) {
|
|
130
|
-
return 'narrow';
|
|
131
|
-
}
|
|
132
|
-
|
|
133
|
-
if (isWide(codePoint)) {
|
|
134
|
-
return 'wide';
|
|
135
|
-
}
|
|
136
|
-
|
|
137
|
-
return 'neutral';
|
|
138
|
-
}
|
|
@@ -1,71 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "get-east-asian-width",
|
|
3
|
-
"version": "1.6.0",
|
|
4
|
-
"description": "Determine the East Asian Width of a Unicode character",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"repository": "sindresorhus/get-east-asian-width",
|
|
7
|
-
"funding": "https://github.com/sponsors/sindresorhus",
|
|
8
|
-
"author": {
|
|
9
|
-
"name": "Sindre Sorhus",
|
|
10
|
-
"email": "sindresorhus@gmail.com",
|
|
11
|
-
"url": "https://sindresorhus.com"
|
|
12
|
-
},
|
|
13
|
-
"type": "module",
|
|
14
|
-
"exports": {
|
|
15
|
-
"types": "./index.d.ts",
|
|
16
|
-
"default": "./index.js"
|
|
17
|
-
},
|
|
18
|
-
"sideEffects": false,
|
|
19
|
-
"engines": {
|
|
20
|
-
"node": ">=18"
|
|
21
|
-
},
|
|
22
|
-
"scripts": {
|
|
23
|
-
"test": "xo && ava && tsc index.d.ts",
|
|
24
|
-
"build": "node scripts/build.js",
|
|
25
|
-
"prepublish": "npm run build"
|
|
26
|
-
},
|
|
27
|
-
"files": [
|
|
28
|
-
"index.js",
|
|
29
|
-
"index.d.ts",
|
|
30
|
-
"lookup.js",
|
|
31
|
-
"lookup-data.js",
|
|
32
|
-
"utilities.js"
|
|
33
|
-
],
|
|
34
|
-
"keywords": [
|
|
35
|
-
"unicode",
|
|
36
|
-
"east-asian-width",
|
|
37
|
-
"eastasianwidth",
|
|
38
|
-
"character",
|
|
39
|
-
"string",
|
|
40
|
-
"width",
|
|
41
|
-
"text",
|
|
42
|
-
"layout",
|
|
43
|
-
"alignment",
|
|
44
|
-
"fullwidth",
|
|
45
|
-
"halfwidth",
|
|
46
|
-
"ambiguous",
|
|
47
|
-
"narrow",
|
|
48
|
-
"wide",
|
|
49
|
-
"neutral",
|
|
50
|
-
"typography",
|
|
51
|
-
"japanese",
|
|
52
|
-
"chinese",
|
|
53
|
-
"korean",
|
|
54
|
-
"codepoint",
|
|
55
|
-
"text-processing",
|
|
56
|
-
"i18n",
|
|
57
|
-
"l10n"
|
|
58
|
-
],
|
|
59
|
-
"devDependencies": {
|
|
60
|
-
"ava": "^5.3.1",
|
|
61
|
-
"outdent": "^0.8.0",
|
|
62
|
-
"simplify-ranges": "^0.1.0",
|
|
63
|
-
"typescript": "^5.2.2",
|
|
64
|
-
"xo": "^0.56.0"
|
|
65
|
-
},
|
|
66
|
-
"xo": {
|
|
67
|
-
"ignores": [
|
|
68
|
-
"lookup-data.js"
|
|
69
|
-
]
|
|
70
|
-
}
|
|
71
|
-
}
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
# get-east-asian-width
|
|
2
|
-
|
|
3
|
-
> Determine the [East Asian Width](https://unicode.org/reports/tr11/) of a Unicode character
|
|
4
|
-
|
|
5
|
-
> East Asian Width categorizes Unicode characters based on their occupied space in East Asian typography, which helps in text layout and alignment, particularly in languages like Japanese, Chinese, and Korean.
|
|
6
|
-
|
|
7
|
-
Unlike other similar packages, this package uses the latest Unicode data (which changes each year).
|
|
8
|
-
|
|
9
|
-
## Install
|
|
10
|
-
|
|
11
|
-
```sh
|
|
12
|
-
npm install get-east-asian-width
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Usage
|
|
16
|
-
|
|
17
|
-
```js
|
|
18
|
-
import {eastAsianWidth, eastAsianWidthType} from 'get-east-asian-width';
|
|
19
|
-
|
|
20
|
-
const codePoint = '字'.codePointAt(0);
|
|
21
|
-
|
|
22
|
-
console.log(eastAsianWidth(codePoint));
|
|
23
|
-
//=> 2
|
|
24
|
-
|
|
25
|
-
console.log(eastAsianWidthType(codePoint));
|
|
26
|
-
//=> 'wide'
|
|
27
|
-
```
|
|
28
|
-
|
|
29
|
-
## `eastAsianWidth(codePoint: number, options?: object): 1 | 2`
|
|
30
|
-
|
|
31
|
-
Returns the width as a number for the given code point.
|
|
32
|
-
|
|
33
|
-
### options
|
|
34
|
-
|
|
35
|
-
Type: `object`
|
|
36
|
-
|
|
37
|
-
#### ambiguousAsWide
|
|
38
|
-
|
|
39
|
-
Type: `boolean`\
|
|
40
|
-
Default: `false`
|
|
41
|
-
|
|
42
|
-
Whether to treat an `'ambiguous'` character as wide.
|
|
43
|
-
|
|
44
|
-
```js
|
|
45
|
-
import {eastAsianWidth} from 'get-east-asian-width';
|
|
46
|
-
|
|
47
|
-
const codePoint = '⛣'.codePointAt(0);
|
|
48
|
-
|
|
49
|
-
console.log(eastAsianWidth(codePoint));
|
|
50
|
-
//=> 1
|
|
51
|
-
|
|
52
|
-
console.log(eastAsianWidth(codePoint, {ambiguousAsWide: true}));
|
|
53
|
-
//=> 2
|
|
54
|
-
```
|
|
55
|
-
|
|
56
|
-
> Ambiguous characters behave like wide or narrow characters depending on the context (language tag, script identification, associated font, source of data, or explicit markup; all can provide the context). **If the context cannot be established reliably, they should be treated as narrow characters by default.**
|
|
57
|
-
> - http://www.unicode.org/reports/tr11/
|
|
58
|
-
|
|
59
|
-
## `eastAsianWidthType(codePoint: number): 'fullwidth' | 'halfwidth' | 'wide' | 'narrow' | 'neutral' | 'ambiguous'`
|
|
60
|
-
|
|
61
|
-
Returns the type of “East Asian Width” for the given code point.
|
|
62
|
-
|
|
63
|
-
## Related
|
|
64
|
-
|
|
65
|
-
- [string-width](https://github.com/sindresorhus/string-width) - Get the visual width of a string
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
Binary search on a sorted flat array of [start, end] pairs.
|
|
3
|
-
|
|
4
|
-
@param {number[]} ranges - Flat array of inclusive [start, end] range pairs, e.g. [0, 5, 10, 20].
|
|
5
|
-
@param {number} codePoint - The value to search for.
|
|
6
|
-
@returns {boolean} Whether the value falls within any of the ranges.
|
|
7
|
-
*/
|
|
8
|
-
export const isInRange = (ranges, codePoint) => {
|
|
9
|
-
let low = 0;
|
|
10
|
-
let high = Math.floor(ranges.length / 2) - 1;
|
|
11
|
-
while (low <= high) {
|
|
12
|
-
const mid = Math.floor((low + high) / 2);
|
|
13
|
-
const i = mid * 2;
|
|
14
|
-
if (codePoint < ranges[i]) {
|
|
15
|
-
high = mid - 1;
|
|
16
|
-
} else if (codePoint > ranges[i + 1]) {
|
|
17
|
-
low = mid + 1;
|
|
18
|
-
} else {
|
|
19
|
-
return true;
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
|
|
23
|
-
return false;
|
|
24
|
-
};
|
|
@@ -1,39 +0,0 @@
|
|
|
1
|
-
export type Options = {
|
|
2
|
-
/**
|
|
3
|
-
Count [ambiguous width characters](https://www.unicode.org/reports/tr11/#Ambiguous) as having narrow width (count of 1) instead of wide width (count of 2).
|
|
4
|
-
|
|
5
|
-
@default true
|
|
6
|
-
|
|
7
|
-
> Ambiguous characters behave like wide or narrow characters depending on the context (language tag, script identification, associated font, source of data, or explicit markup; all can provide the context). __If the context cannot be established reliably, they should be treated as narrow characters by default.__
|
|
8
|
-
> - http://www.unicode.org/reports/tr11/
|
|
9
|
-
*/
|
|
10
|
-
readonly ambiguousIsNarrow?: boolean;
|
|
11
|
-
|
|
12
|
-
/**
|
|
13
|
-
Whether [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) should be counted.
|
|
14
|
-
|
|
15
|
-
@default false
|
|
16
|
-
*/
|
|
17
|
-
readonly countAnsiEscapeCodes?: boolean;
|
|
18
|
-
};
|
|
19
|
-
|
|
20
|
-
/**
|
|
21
|
-
Get the visual width of a string - the number of columns required to display it.
|
|
22
|
-
|
|
23
|
-
Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and doesn't affect the width.
|
|
24
|
-
|
|
25
|
-
@example
|
|
26
|
-
```
|
|
27
|
-
import stringWidth from 'string-width';
|
|
28
|
-
|
|
29
|
-
stringWidth('a');
|
|
30
|
-
//=> 1
|
|
31
|
-
|
|
32
|
-
stringWidth('古');
|
|
33
|
-
//=> 2
|
|
34
|
-
|
|
35
|
-
stringWidth('\u001B[1m古\u001B[22m');
|
|
36
|
-
//=> 2
|
|
37
|
-
```
|
|
38
|
-
*/
|
|
39
|
-
export default function stringWidth(string: string, options?: Options): number;
|
|
@@ -1,207 +0,0 @@
|
|
|
1
|
-
import stripAnsi from 'strip-ansi';
|
|
2
|
-
import {eastAsianWidth} from 'get-east-asian-width';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
Logic:
|
|
6
|
-
- Segment graphemes to match how terminals render clusters.
|
|
7
|
-
- Width rules:
|
|
8
|
-
1. Skip non-printing clusters (Default_Ignorable, Control, pure nonspacing/enclosing Mark, lone Surrogates). Tabs are ignored by design.
|
|
9
|
-
2. RGI emoji clusters (\p{RGI_Emoji}) are double-width.
|
|
10
|
-
3. Minimally-qualified/unqualified emoji clusters (ZWJ sequences with 2+ Extended_Pictographic, or keycap sequences) are double-width.
|
|
11
|
-
4. Hangul jamo collapse each standard modern Hangul L+V or L+V+T syllable piece to width 2.
|
|
12
|
-
Unmatched repeated leading/vowel/trailing jamo stay additive because that matches how the terminals we target render them.
|
|
13
|
-
5. Otherwise use East Asian Width of the cluster's first visible code point, and add widths for trailing spacing marks and Halfwidth/Fullwidth Forms within the same cluster (e.g., dakuten/handakuten/prolonged sound mark).
|
|
14
|
-
*/
|
|
15
|
-
|
|
16
|
-
const segmenter = new Intl.Segmenter();
|
|
17
|
-
|
|
18
|
-
// Whole-cluster zero-width
|
|
19
|
-
const zeroWidthClusterRegex = /^(?:\p{Default_Ignorable_Code_Point}|\p{Control}|\p{Format}|\p{Nonspacing_Mark}|\p{Enclosing_Mark}|\p{Surrogate})+$/v;
|
|
20
|
-
|
|
21
|
-
// Pick the base scalar if the cluster starts with Prepend/Format/Marks
|
|
22
|
-
const leadingNonPrintingRegex = /^[\p{Default_Ignorable_Code_Point}\p{Control}\p{Format}\p{Nonspacing_Mark}\p{Enclosing_Mark}\p{Surrogate}]+/v;
|
|
23
|
-
const spacingMarkRegex = /\p{Spacing_Mark}/v;
|
|
24
|
-
|
|
25
|
-
// RGI emoji sequences
|
|
26
|
-
const rgiEmojiRegex = /^\p{RGI_Emoji}$/v;
|
|
27
|
-
|
|
28
|
-
// Detect minimally-qualified/unqualified emoji sequences (missing VS16 but still render as double-width)
|
|
29
|
-
const unqualifiedKeycapRegex = /^[\d#*]\u20E3$/;
|
|
30
|
-
const extendedPictographicRegex = /\p{Extended_Pictographic}/gu;
|
|
31
|
-
|
|
32
|
-
function isDoubleWidthNonRgiEmojiSequence(segment) {
|
|
33
|
-
// Real emoji clusters are < 30 chars; guard against pathological input
|
|
34
|
-
if (segment.length > 50) {
|
|
35
|
-
return false;
|
|
36
|
-
}
|
|
37
|
-
|
|
38
|
-
if (unqualifiedKeycapRegex.test(segment)) {
|
|
39
|
-
return true;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
// ZWJ sequences with 2+ Extended_Pictographic
|
|
43
|
-
if (segment.includes('\u200D')) {
|
|
44
|
-
const pictographics = segment.match(extendedPictographicRegex);
|
|
45
|
-
return pictographics !== null && pictographics.length >= 2;
|
|
46
|
-
}
|
|
47
|
-
|
|
48
|
-
return false;
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
function baseVisible(segment) {
|
|
52
|
-
return segment.replace(leadingNonPrintingRegex, '');
|
|
53
|
-
}
|
|
54
|
-
|
|
55
|
-
function isZeroWidthCluster(segment) {
|
|
56
|
-
return zeroWidthClusterRegex.test(segment);
|
|
57
|
-
}
|
|
58
|
-
|
|
59
|
-
function isHangulLeadingJamo(codePoint) {
|
|
60
|
-
return (codePoint >= 0x11_00 && codePoint <= 0x11_5F)
|
|
61
|
-
|| (codePoint >= 0xA9_60 && codePoint <= 0xA9_7C);
|
|
62
|
-
}
|
|
63
|
-
|
|
64
|
-
function isHangulVowelJamo(codePoint) {
|
|
65
|
-
return (codePoint >= 0x11_60 && codePoint <= 0x11_A7)
|
|
66
|
-
|| (codePoint >= 0xD7_B0 && codePoint <= 0xD7_C6);
|
|
67
|
-
}
|
|
68
|
-
|
|
69
|
-
function isHangulTrailingJamo(codePoint) {
|
|
70
|
-
return (codePoint >= 0x11_A8 && codePoint <= 0x11_FF)
|
|
71
|
-
|| (codePoint >= 0xD7_CB && codePoint <= 0xD7_FB);
|
|
72
|
-
}
|
|
73
|
-
|
|
74
|
-
function isHangulJamo(codePoint) {
|
|
75
|
-
return isHangulLeadingJamo(codePoint)
|
|
76
|
-
|| isHangulVowelJamo(codePoint)
|
|
77
|
-
|| isHangulTrailingJamo(codePoint);
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
function hangulClusterWidth(visibleSegment, eastAsianWidthOptions) {
|
|
81
|
-
const codePoints = [];
|
|
82
|
-
|
|
83
|
-
for (const character of visibleSegment) {
|
|
84
|
-
if (zeroWidthClusterRegex.test(character)) {
|
|
85
|
-
continue;
|
|
86
|
-
}
|
|
87
|
-
|
|
88
|
-
codePoints.push(character.codePointAt(0));
|
|
89
|
-
}
|
|
90
|
-
|
|
91
|
-
if (codePoints.length === 0) {
|
|
92
|
-
return undefined;
|
|
93
|
-
}
|
|
94
|
-
|
|
95
|
-
let width = 0;
|
|
96
|
-
|
|
97
|
-
for (let index = 0; index < codePoints.length; index++) {
|
|
98
|
-
const codePoint = codePoints[index];
|
|
99
|
-
if (!isHangulJamo(codePoint)) {
|
|
100
|
-
if (width === 0) {
|
|
101
|
-
return undefined;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
// Mixed cluster (e.g., L + precomposed syllable): use EAW for non-jamo remainder
|
|
105
|
-
for (let remaining = index; remaining < codePoints.length; remaining++) {
|
|
106
|
-
width += eastAsianWidth(codePoints[remaining], eastAsianWidthOptions);
|
|
107
|
-
}
|
|
108
|
-
|
|
109
|
-
return width;
|
|
110
|
-
}
|
|
111
|
-
|
|
112
|
-
// Modern Hangul L+V(+T) shapes as one syllable block. Unmatched jamo stay additive:
|
|
113
|
-
// U+1100 U+1100 U+1161 => U+1100 + (U+1100 U+1161) => 2 + 2.
|
|
114
|
-
if (
|
|
115
|
-
isHangulLeadingJamo(codePoint)
|
|
116
|
-
&& isHangulVowelJamo(codePoints[index + 1])
|
|
117
|
-
) {
|
|
118
|
-
width += 2;
|
|
119
|
-
index += isHangulTrailingJamo(codePoints[index + 2]) ? 2 : 1;
|
|
120
|
-
continue;
|
|
121
|
-
}
|
|
122
|
-
|
|
123
|
-
width += eastAsianWidth(codePoint, eastAsianWidthOptions);
|
|
124
|
-
}
|
|
125
|
-
|
|
126
|
-
return width;
|
|
127
|
-
}
|
|
128
|
-
|
|
129
|
-
function trailingWidth(visibleSegment, eastAsianWidthOptions) {
|
|
130
|
-
let extra = 0;
|
|
131
|
-
let first = true;
|
|
132
|
-
|
|
133
|
-
for (const character of visibleSegment) {
|
|
134
|
-
if (first) {
|
|
135
|
-
first = false;
|
|
136
|
-
continue;
|
|
137
|
-
}
|
|
138
|
-
|
|
139
|
-
if (
|
|
140
|
-
spacingMarkRegex.test(character)
|
|
141
|
-
|| (character >= '\uFF00' && character <= '\uFFEF')
|
|
142
|
-
) {
|
|
143
|
-
extra += eastAsianWidth(character.codePointAt(0), eastAsianWidthOptions);
|
|
144
|
-
}
|
|
145
|
-
}
|
|
146
|
-
|
|
147
|
-
return extra;
|
|
148
|
-
}
|
|
149
|
-
|
|
150
|
-
export default function stringWidth(input, options = {}) {
|
|
151
|
-
if (typeof input !== 'string' || input.length === 0) {
|
|
152
|
-
return 0;
|
|
153
|
-
}
|
|
154
|
-
|
|
155
|
-
const {
|
|
156
|
-
ambiguousIsNarrow = true,
|
|
157
|
-
countAnsiEscapeCodes = false,
|
|
158
|
-
} = options;
|
|
159
|
-
|
|
160
|
-
let string = input;
|
|
161
|
-
|
|
162
|
-
// Avoid calling stripAnsi when there are no ANSI escape sequences (ESC = 0x1B, CSI = 0x9B)
|
|
163
|
-
if (!countAnsiEscapeCodes && (string.includes('\u001B') || string.includes('\u009B'))) {
|
|
164
|
-
string = stripAnsi(string);
|
|
165
|
-
}
|
|
166
|
-
|
|
167
|
-
if (string.length === 0) {
|
|
168
|
-
return 0;
|
|
169
|
-
}
|
|
170
|
-
|
|
171
|
-
// Fast path: printable ASCII (0x20–0x7E) needs no segmenter, regex, or EAW lookup — width equals length.
|
|
172
|
-
if (/^[\u0020-\u007E]*$/.test(string)) {
|
|
173
|
-
return string.length;
|
|
174
|
-
}
|
|
175
|
-
|
|
176
|
-
let width = 0;
|
|
177
|
-
const eastAsianWidthOptions = {ambiguousAsWide: !ambiguousIsNarrow};
|
|
178
|
-
|
|
179
|
-
for (const {segment} of segmenter.segment(string)) {
|
|
180
|
-
// Zero-width / non-printing clusters
|
|
181
|
-
if (isZeroWidthCluster(segment)) {
|
|
182
|
-
continue;
|
|
183
|
-
}
|
|
184
|
-
|
|
185
|
-
// Emoji width logic
|
|
186
|
-
if (rgiEmojiRegex.test(segment) || isDoubleWidthNonRgiEmojiSequence(segment)) {
|
|
187
|
-
width += 2;
|
|
188
|
-
continue;
|
|
189
|
-
}
|
|
190
|
-
|
|
191
|
-
const visibleSegment = baseVisible(segment);
|
|
192
|
-
const hangulWidth = hangulClusterWidth(visibleSegment, eastAsianWidthOptions);
|
|
193
|
-
if (hangulWidth !== undefined) {
|
|
194
|
-
width += hangulWidth;
|
|
195
|
-
continue;
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
// Everything else: EAW of the cluster’s first visible scalar
|
|
199
|
-
const codePoint = visibleSegment.codePointAt(0);
|
|
200
|
-
width += eastAsianWidth(codePoint, eastAsianWidthOptions);
|
|
201
|
-
|
|
202
|
-
// Add width for trailing spacing marks and Halfwidth/Fullwidth Forms (e.g., ゙, ゚, ー)
|
|
203
|
-
width += trailingWidth(visibleSegment, eastAsianWidthOptions);
|
|
204
|
-
}
|
|
205
|
-
|
|
206
|
-
return width;
|
|
207
|
-
}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
-
|
|
7
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
-
|
|
9
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
@@ -1,65 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "string-width",
|
|
3
|
-
"version": "8.2.2",
|
|
4
|
-
"description": "Get the visual width of a string - the number of columns required to display it",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"repository": "sindresorhus/string-width",
|
|
7
|
-
"funding": "https://github.com/sponsors/sindresorhus",
|
|
8
|
-
"author": {
|
|
9
|
-
"name": "Sindre Sorhus",
|
|
10
|
-
"email": "sindresorhus@gmail.com",
|
|
11
|
-
"url": "https://sindresorhus.com"
|
|
12
|
-
},
|
|
13
|
-
"type": "module",
|
|
14
|
-
"exports": {
|
|
15
|
-
"types": "./index.d.ts",
|
|
16
|
-
"default": "./index.js"
|
|
17
|
-
},
|
|
18
|
-
"sideEffects": false,
|
|
19
|
-
"engines": {
|
|
20
|
-
"node": ">=20"
|
|
21
|
-
},
|
|
22
|
-
"scripts": {
|
|
23
|
-
"test": "xo && ava && tsd"
|
|
24
|
-
},
|
|
25
|
-
"files": [
|
|
26
|
-
"index.js",
|
|
27
|
-
"index.d.ts"
|
|
28
|
-
],
|
|
29
|
-
"keywords": [
|
|
30
|
-
"string",
|
|
31
|
-
"character",
|
|
32
|
-
"unicode",
|
|
33
|
-
"width",
|
|
34
|
-
"visual",
|
|
35
|
-
"column",
|
|
36
|
-
"columns",
|
|
37
|
-
"fullwidth",
|
|
38
|
-
"full-width",
|
|
39
|
-
"wcwidth",
|
|
40
|
-
"wcswidth",
|
|
41
|
-
"full",
|
|
42
|
-
"ansi",
|
|
43
|
-
"escape",
|
|
44
|
-
"codes",
|
|
45
|
-
"cli",
|
|
46
|
-
"command-line",
|
|
47
|
-
"terminal",
|
|
48
|
-
"console",
|
|
49
|
-
"cjk",
|
|
50
|
-
"chinese",
|
|
51
|
-
"japanese",
|
|
52
|
-
"korean",
|
|
53
|
-
"fixed-width",
|
|
54
|
-
"east-asian-width"
|
|
55
|
-
],
|
|
56
|
-
"dependencies": {
|
|
57
|
-
"get-east-asian-width": "^1.5.0",
|
|
58
|
-
"strip-ansi": "^7.1.2"
|
|
59
|
-
},
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"ava": "^6.4.1",
|
|
62
|
-
"tsd": "^0.33.0",
|
|
63
|
-
"xo": "^1.2.3"
|
|
64
|
-
}
|
|
65
|
-
}
|
|
@@ -1,66 +0,0 @@
|
|
|
1
|
-
# string-width
|
|
2
|
-
|
|
3
|
-
> Get the visual width of a string - the number of columns required to display it
|
|
4
|
-
|
|
5
|
-
Some Unicode characters are [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms) and use double the normal width. [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) are stripped and do not affect the width.
|
|
6
|
-
|
|
7
|
-
Useful to be able to measure the actual width of command-line output.
|
|
8
|
-
|
|
9
|
-
## Install
|
|
10
|
-
|
|
11
|
-
```sh
|
|
12
|
-
npm install string-width
|
|
13
|
-
```
|
|
14
|
-
|
|
15
|
-
## Usage
|
|
16
|
-
|
|
17
|
-
```js
|
|
18
|
-
import stringWidth from 'string-width';
|
|
19
|
-
|
|
20
|
-
stringWidth('a');
|
|
21
|
-
//=> 1
|
|
22
|
-
|
|
23
|
-
stringWidth('古');
|
|
24
|
-
//=> 2
|
|
25
|
-
|
|
26
|
-
stringWidth('\u001B[1m古\u001B[22m');
|
|
27
|
-
//=> 2
|
|
28
|
-
```
|
|
29
|
-
|
|
30
|
-
## API
|
|
31
|
-
|
|
32
|
-
### stringWidth(string, options?)
|
|
33
|
-
|
|
34
|
-
#### string
|
|
35
|
-
|
|
36
|
-
Type: `string`
|
|
37
|
-
|
|
38
|
-
The string to be counted.
|
|
39
|
-
|
|
40
|
-
#### options
|
|
41
|
-
|
|
42
|
-
Type: `object`
|
|
43
|
-
|
|
44
|
-
##### ambiguousIsNarrow
|
|
45
|
-
|
|
46
|
-
Type: `boolean`\
|
|
47
|
-
Default: `true`
|
|
48
|
-
|
|
49
|
-
Count [ambiguous width characters](https://www.unicode.org/reports/tr11/#Ambiguous) as having narrow width (count of 1) instead of wide width (count of 2).
|
|
50
|
-
|
|
51
|
-
> Ambiguous characters behave like wide or narrow characters depending on the context (language tag, script identification, associated font, source of data, or explicit markup; all can provide the context). **If the context cannot be established reliably, they should be treated as narrow characters by default.**
|
|
52
|
-
> - http://www.unicode.org/reports/tr11/
|
|
53
|
-
|
|
54
|
-
##### countAnsiEscapeCodes
|
|
55
|
-
|
|
56
|
-
Type: `boolean`\
|
|
57
|
-
Default: `false`
|
|
58
|
-
|
|
59
|
-
Whether [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) should be counted.
|
|
60
|
-
|
|
61
|
-
## Related
|
|
62
|
-
|
|
63
|
-
- [string-width-cli](https://github.com/sindresorhus/string-width-cli) - CLI for this module
|
|
64
|
-
- [string-length](https://github.com/sindresorhus/string-length) - Get the real length of a string
|
|
65
|
-
- [widest-line](https://github.com/sindresorhus/widest-line) - Get the visual width of the widest line in a string
|
|
66
|
-
- [get-east-asian-width](https://github.com/sindresorhus/get-east-asian-width) - Determine the East Asian Width of a Unicode character
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
Strip [ANSI escape codes](https://en.wikipedia.org/wiki/ANSI_escape_code) from a string.
|
|
3
|
-
|
|
4
|
-
@example
|
|
5
|
-
```
|
|
6
|
-
import stripAnsi from 'strip-ansi';
|
|
7
|
-
|
|
8
|
-
stripAnsi('\u001B[4mUnicorn\u001B[0m');
|
|
9
|
-
//=> 'Unicorn'
|
|
10
|
-
|
|
11
|
-
stripAnsi('\u001B]8;;https://github.com\u0007Click\u001B]8;;\u0007');
|
|
12
|
-
//=> 'Click'
|
|
13
|
-
```
|
|
14
|
-
*/
|
|
15
|
-
export default function stripAnsi(string: string): string;
|