修改后台权限
This commit is contained in:
60
node_modules/get-east-asian-width/index.d.ts
generated
vendored
Normal file
60
node_modules/get-east-asian-width/index.d.ts
generated
vendored
Normal file
@@ -0,0 +1,60 @@
|
||||
export type WidthType = 'fullwidth' | 'halfwidth' | 'wide' | 'narrow' | 'neutral' | 'ambiguous';
|
||||
|
||||
export type Options = {
|
||||
/**
|
||||
Whether to treat an `'ambiguous'` character as wide.
|
||||
|
||||
@default true
|
||||
|
||||
@example
|
||||
```
|
||||
import {eastAsianWidth} from 'get-east-asian-width';
|
||||
|
||||
const codePoint = '⛣'.codePointAt(0);
|
||||
|
||||
console.log(eastAsianWidth(codePoint));
|
||||
//=> 1
|
||||
|
||||
console.log(eastAsianWidth(codePoint, {ambiguousAsWide: true}));
|
||||
//=> 2
|
||||
```
|
||||
|
||||
> 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.__
|
||||
> - http://www.unicode.org/reports/tr11/
|
||||
*/
|
||||
readonly ambiguousAsWide?: boolean;
|
||||
};
|
||||
|
||||
/**
|
||||
Returns the width as a number for the given code point.
|
||||
|
||||
@param codePoint - A Unicode code point.
|
||||
|
||||
@example
|
||||
```
|
||||
import {eastAsianWidth} from 'get-east-asian-width';
|
||||
|
||||
const codePoint = '字'.codePointAt(0);
|
||||
|
||||
console.log(eastAsianWidth(codePoint));
|
||||
//=> 2
|
||||
```
|
||||
*/
|
||||
export function eastAsianWidth(codePoint: number, options?: Options): 1 | 2;
|
||||
|
||||
/**
|
||||
Returns the type of “East Asian Width” for the given code point.
|
||||
|
||||
@param codePoint - A Unicode code point.
|
||||
|
||||
@example
|
||||
```
|
||||
import {eastAsianWidthType} from 'get-east-asian-width';
|
||||
|
||||
const codePoint = '字'.codePointAt(0);
|
||||
|
||||
console.log(eastAsianWidthType(codePoint));
|
||||
//=> 'wide'
|
||||
```
|
||||
*/
|
||||
export function eastAsianWidthType(codePoint: number): WidthType;
|
||||
30
node_modules/get-east-asian-width/index.js
generated
vendored
Normal file
30
node_modules/get-east-asian-width/index.js
generated
vendored
Normal file
@@ -0,0 +1,30 @@
|
||||
import {getCategory, isAmbiguous, isFullWidth, isWide} from './lookup.js';
|
||||
|
||||
function validate(codePoint) {
|
||||
if (!Number.isSafeInteger(codePoint)) {
|
||||
throw new TypeError(`Expected a code point, got \`${typeof codePoint}\`.`);
|
||||
}
|
||||
}
|
||||
|
||||
export function eastAsianWidthType(codePoint) {
|
||||
validate(codePoint);
|
||||
|
||||
return getCategory(codePoint);
|
||||
}
|
||||
|
||||
export function eastAsianWidth(codePoint, {ambiguousAsWide = false} = {}) {
|
||||
validate(codePoint);
|
||||
|
||||
if (
|
||||
isFullWidth(codePoint)
|
||||
|| isWide(codePoint)
|
||||
|| (ambiguousAsWide && isAmbiguous(codePoint))
|
||||
) {
|
||||
return 2;
|
||||
}
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
// Private exports for https://github.com/sindresorhus/is-fullwidth-code-point
|
||||
export {isFullWidth as _isFullWidth, isWide as _isWide} from './lookup.js';
|
||||
9
node_modules/get-east-asian-width/license
generated
vendored
Normal file
9
node_modules/get-east-asian-width/license
generated
vendored
Normal file
@@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (https://sindresorhus.com)
|
||||
|
||||
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:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
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.
|
||||
18
node_modules/get-east-asian-width/lookup-data.js
generated
vendored
Normal file
18
node_modules/get-east-asian-width/lookup-data.js
generated
vendored
Normal file
@@ -0,0 +1,18 @@
|
||||
// Generated by scripts/build.js
|
||||
|
||||
// prettier-ignore
|
||||
const ambiguousRanges = [161, 161, 164, 164, 167, 168, 170, 170, 173, 174, 176, 180, 182, 186, 188, 191, 198, 198, 208, 208, 215, 216, 222, 225, 230, 230, 232, 234, 236, 237, 240, 240, 242, 243, 247, 250, 252, 252, 254, 254, 257, 257, 273, 273, 275, 275, 283, 283, 294, 295, 299, 299, 305, 307, 312, 312, 319, 322, 324, 324, 328, 331, 333, 333, 338, 339, 358, 359, 363, 363, 462, 462, 464, 464, 466, 466, 468, 468, 470, 470, 472, 472, 474, 474, 476, 476, 593, 593, 609, 609, 708, 708, 711, 711, 713, 715, 717, 717, 720, 720, 728, 731, 733, 733, 735, 735, 768, 879, 913, 929, 931, 937, 945, 961, 963, 969, 1025, 1025, 1040, 1103, 1105, 1105, 8208, 8208, 8211, 8214, 8216, 8217, 8220, 8221, 8224, 8226, 8228, 8231, 8240, 8240, 8242, 8243, 8245, 8245, 8251, 8251, 8254, 8254, 8308, 8308, 8319, 8319, 8321, 8324, 8364, 8364, 8451, 8451, 8453, 8453, 8457, 8457, 8467, 8467, 8470, 8470, 8481, 8482, 8486, 8486, 8491, 8491, 8531, 8532, 8539, 8542, 8544, 8555, 8560, 8569, 8585, 8585, 8592, 8601, 8632, 8633, 8658, 8658, 8660, 8660, 8679, 8679, 8704, 8704, 8706, 8707, 8711, 8712, 8715, 8715, 8719, 8719, 8721, 8721, 8725, 8725, 8730, 8730, 8733, 8736, 8739, 8739, 8741, 8741, 8743, 8748, 8750, 8750, 8756, 8759, 8764, 8765, 8776, 8776, 8780, 8780, 8786, 8786, 8800, 8801, 8804, 8807, 8810, 8811, 8814, 8815, 8834, 8835, 8838, 8839, 8853, 8853, 8857, 8857, 8869, 8869, 8895, 8895, 8978, 8978, 9312, 9449, 9451, 9547, 9552, 9587, 9600, 9615, 9618, 9621, 9632, 9633, 9635, 9641, 9650, 9651, 9654, 9655, 9660, 9661, 9664, 9665, 9670, 9672, 9675, 9675, 9678, 9681, 9698, 9701, 9711, 9711, 9733, 9734, 9737, 9737, 9742, 9743, 9756, 9756, 9758, 9758, 9792, 9792, 9794, 9794, 9824, 9825, 9827, 9829, 9831, 9834, 9836, 9837, 9839, 9839, 9886, 9887, 9919, 9919, 9926, 9933, 9935, 9939, 9941, 9953, 9955, 9955, 9960, 9961, 9963, 9969, 9972, 9972, 9974, 9977, 9979, 9980, 9982, 9983, 10045, 10045, 10102, 10111, 11094, 11097, 12872, 12879, 57344, 63743, 65024, 65039, 65533, 65533, 127232, 127242, 127248, 127277, 127280, 127337, 127344, 127373, 127375, 127376, 127387, 127404, 917760, 917999, 983040, 1048573, 1048576, 1114109];
|
||||
|
||||
// prettier-ignore
|
||||
const fullwidthRanges = [12288, 12288, 65281, 65376, 65504, 65510];
|
||||
|
||||
// prettier-ignore
|
||||
const halfwidthRanges = [8361, 8361, 65377, 65470, 65474, 65479, 65482, 65487, 65490, 65495, 65498, 65500, 65512, 65518];
|
||||
|
||||
// prettier-ignore
|
||||
const narrowRanges = [32, 126, 162, 163, 165, 166, 172, 172, 175, 175, 10214, 10221, 10629, 10630];
|
||||
|
||||
// prettier-ignore
|
||||
const wideRanges = [4352, 4447, 8986, 8987, 9001, 9002, 9193, 9196, 9200, 9200, 9203, 9203, 9725, 9726, 9748, 9749, 9776, 9783, 9800, 9811, 9855, 9855, 9866, 9871, 9875, 9875, 9889, 9889, 9898, 9899, 9917, 9918, 9924, 9925, 9934, 9934, 9940, 9940, 9962, 9962, 9970, 9971, 9973, 9973, 9978, 9978, 9981, 9981, 9989, 9989, 9994, 9995, 10024, 10024, 10060, 10060, 10062, 10062, 10067, 10069, 10071, 10071, 10133, 10135, 10160, 10160, 10175, 10175, 11035, 11036, 11088, 11088, 11093, 11093, 11904, 11929, 11931, 12019, 12032, 12245, 12272, 12287, 12289, 12350, 12353, 12438, 12441, 12543, 12549, 12591, 12593, 12686, 12688, 12773, 12783, 12830, 12832, 12871, 12880, 42124, 42128, 42182, 43360, 43388, 44032, 55203, 63744, 64255, 65040, 65049, 65072, 65106, 65108, 65126, 65128, 65131, 94176, 94180, 94192, 94198, 94208, 101589, 101631, 101662, 101760, 101874, 110576, 110579, 110581, 110587, 110589, 110590, 110592, 110882, 110898, 110898, 110928, 110930, 110933, 110933, 110948, 110951, 110960, 111355, 119552, 119638, 119648, 119670, 126980, 126980, 127183, 127183, 127374, 127374, 127377, 127386, 127488, 127490, 127504, 127547, 127552, 127560, 127568, 127569, 127584, 127589, 127744, 127776, 127789, 127797, 127799, 127868, 127870, 127891, 127904, 127946, 127951, 127955, 127968, 127984, 127988, 127988, 127992, 128062, 128064, 128064, 128066, 128252, 128255, 128317, 128331, 128334, 128336, 128359, 128378, 128378, 128405, 128406, 128420, 128420, 128507, 128591, 128640, 128709, 128716, 128716, 128720, 128722, 128725, 128728, 128732, 128735, 128747, 128748, 128756, 128764, 128992, 129003, 129008, 129008, 129292, 129338, 129340, 129349, 129351, 129535, 129648, 129660, 129664, 129674, 129678, 129734, 129736, 129736, 129741, 129756, 129759, 129770, 129775, 129784, 131072, 196605, 196608, 262141];
|
||||
|
||||
export {ambiguousRanges, fullwidthRanges, halfwidthRanges, narrowRanges, wideRanges};
|
||||
135
node_modules/get-east-asian-width/lookup.js
generated
vendored
Normal file
135
node_modules/get-east-asian-width/lookup.js
generated
vendored
Normal file
@@ -0,0 +1,135 @@
|
||||
import {
|
||||
ambiguousRanges,
|
||||
fullwidthRanges,
|
||||
halfwidthRanges,
|
||||
narrowRanges,
|
||||
wideRanges,
|
||||
} from './lookup-data.js';
|
||||
import {isInRange} from './utilities.js';
|
||||
|
||||
const minimumAmbiguousCodePoint = ambiguousRanges[0];
|
||||
const maximumAmbiguousCodePoint = ambiguousRanges.at(-1);
|
||||
const minimumFullWidthCodePoint = fullwidthRanges[0];
|
||||
const maximumFullWidthCodePoint = fullwidthRanges.at(-1);
|
||||
const minimumHalfWidthCodePoint = halfwidthRanges[0];
|
||||
const maximumHalfWidthCodePoint = halfwidthRanges.at(-1);
|
||||
const minimumNarrowCodePoint = narrowRanges[0];
|
||||
const maximumNarrowCodePoint = narrowRanges.at(-1);
|
||||
const minimumWideCodePoint = wideRanges[0];
|
||||
const maximumWideCodePoint = wideRanges.at(-1);
|
||||
|
||||
const commonCjkCodePoint = 0x4E_00;
|
||||
const [wideFastPathStart, wideFastPathEnd] = findWideFastPathRange(wideRanges);
|
||||
|
||||
// Use a hot-path range so common `isWide` calls can skip binary search.
|
||||
// The range containing U+4E00 covers common CJK ideographs;
|
||||
// fallback to the largest range for resilience to Unicode table changes.
|
||||
function findWideFastPathRange(ranges) {
|
||||
let fastPathStart = ranges[0];
|
||||
let fastPathEnd = ranges[1];
|
||||
|
||||
for (let index = 0; index < ranges.length; index += 2) {
|
||||
const start = ranges[index];
|
||||
const end = ranges[index + 1];
|
||||
|
||||
if (
|
||||
commonCjkCodePoint >= start
|
||||
&& commonCjkCodePoint <= end
|
||||
) {
|
||||
return [start, end];
|
||||
}
|
||||
|
||||
if ((end - start) > (fastPathEnd - fastPathStart)) {
|
||||
fastPathStart = start;
|
||||
fastPathEnd = end;
|
||||
}
|
||||
}
|
||||
|
||||
return [fastPathStart, fastPathEnd];
|
||||
}
|
||||
|
||||
export const isAmbiguous = codePoint => {
|
||||
if (
|
||||
codePoint < minimumAmbiguousCodePoint
|
||||
|| codePoint > maximumAmbiguousCodePoint
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return isInRange(ambiguousRanges, codePoint);
|
||||
};
|
||||
|
||||
export const isFullWidth = codePoint => {
|
||||
if (
|
||||
codePoint < minimumFullWidthCodePoint
|
||||
|| codePoint > maximumFullWidthCodePoint
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return isInRange(fullwidthRanges, codePoint);
|
||||
};
|
||||
|
||||
const isHalfWidth = codePoint => {
|
||||
if (
|
||||
codePoint < minimumHalfWidthCodePoint
|
||||
|| codePoint > maximumHalfWidthCodePoint
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return isInRange(halfwidthRanges, codePoint);
|
||||
};
|
||||
|
||||
const isNarrow = codePoint => {
|
||||
if (
|
||||
codePoint < minimumNarrowCodePoint
|
||||
|| codePoint > maximumNarrowCodePoint
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return isInRange(narrowRanges, codePoint);
|
||||
};
|
||||
|
||||
export const isWide = codePoint => {
|
||||
if (
|
||||
codePoint >= wideFastPathStart
|
||||
&& codePoint <= wideFastPathEnd
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
|
||||
if (
|
||||
codePoint < minimumWideCodePoint
|
||||
|| codePoint > maximumWideCodePoint
|
||||
) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return isInRange(wideRanges, codePoint);
|
||||
};
|
||||
|
||||
export function getCategory(codePoint) {
|
||||
if (isAmbiguous(codePoint)) {
|
||||
return 'ambiguous';
|
||||
}
|
||||
|
||||
if (isFullWidth(codePoint)) {
|
||||
return 'fullwidth';
|
||||
}
|
||||
|
||||
if (isHalfWidth(codePoint)) {
|
||||
return 'halfwidth';
|
||||
}
|
||||
|
||||
if (isNarrow(codePoint)) {
|
||||
return 'narrow';
|
||||
}
|
||||
|
||||
if (isWide(codePoint)) {
|
||||
return 'wide';
|
||||
}
|
||||
|
||||
return 'neutral';
|
||||
}
|
||||
71
node_modules/get-east-asian-width/package.json
generated
vendored
Normal file
71
node_modules/get-east-asian-width/package.json
generated
vendored
Normal file
@@ -0,0 +1,71 @@
|
||||
{
|
||||
"name": "get-east-asian-width",
|
||||
"version": "1.5.0",
|
||||
"description": "Determine the East Asian Width of a Unicode character",
|
||||
"license": "MIT",
|
||||
"repository": "sindresorhus/get-east-asian-width",
|
||||
"funding": "https://github.com/sponsors/sindresorhus",
|
||||
"author": {
|
||||
"name": "Sindre Sorhus",
|
||||
"email": "sindresorhus@gmail.com",
|
||||
"url": "https://sindresorhus.com"
|
||||
},
|
||||
"type": "module",
|
||||
"exports": {
|
||||
"types": "./index.d.ts",
|
||||
"default": "./index.js"
|
||||
},
|
||||
"sideEffects": false,
|
||||
"engines": {
|
||||
"node": ">=18"
|
||||
},
|
||||
"scripts": {
|
||||
"test": "xo && ava && tsc index.d.ts",
|
||||
"build": "node scripts/build.js",
|
||||
"prepublish": "npm run build"
|
||||
},
|
||||
"files": [
|
||||
"index.js",
|
||||
"index.d.ts",
|
||||
"lookup.js",
|
||||
"lookup-data.js",
|
||||
"utilities.js"
|
||||
],
|
||||
"keywords": [
|
||||
"unicode",
|
||||
"east-asian-width",
|
||||
"eastasianwidth",
|
||||
"character",
|
||||
"string",
|
||||
"width",
|
||||
"text",
|
||||
"layout",
|
||||
"alignment",
|
||||
"fullwidth",
|
||||
"halfwidth",
|
||||
"ambiguous",
|
||||
"narrow",
|
||||
"wide",
|
||||
"neutral",
|
||||
"typography",
|
||||
"japanese",
|
||||
"chinese",
|
||||
"korean",
|
||||
"codepoint",
|
||||
"text-processing",
|
||||
"i18n",
|
||||
"l10n"
|
||||
],
|
||||
"devDependencies": {
|
||||
"ava": "^5.3.1",
|
||||
"outdent": "^0.8.0",
|
||||
"simplify-ranges": "^0.1.0",
|
||||
"typescript": "^5.2.2",
|
||||
"xo": "^0.56.0"
|
||||
},
|
||||
"xo": {
|
||||
"ignores": [
|
||||
"lookup-data.js"
|
||||
]
|
||||
}
|
||||
}
|
||||
65
node_modules/get-east-asian-width/readme.md
generated
vendored
Normal file
65
node_modules/get-east-asian-width/readme.md
generated
vendored
Normal file
@@ -0,0 +1,65 @@
|
||||
# get-east-asian-width
|
||||
|
||||
> Determine the [East Asian Width](https://unicode.org/reports/tr11/) of a Unicode character
|
||||
|
||||
> 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.
|
||||
|
||||
Unlike other similar packages, this package uses the latest Unicode data (which changes each year).
|
||||
|
||||
## Install
|
||||
|
||||
```sh
|
||||
npm install get-east-asian-width
|
||||
```
|
||||
|
||||
## Usage
|
||||
|
||||
```js
|
||||
import {eastAsianWidth, eastAsianWidthType} from 'get-east-asian-width';
|
||||
|
||||
const codePoint = '字'.codePointAt(0);
|
||||
|
||||
console.log(eastAsianWidth(codePoint));
|
||||
//=> 2
|
||||
|
||||
console.log(eastAsianWidthType(codePoint));
|
||||
//=> 'wide'
|
||||
```
|
||||
|
||||
## `eastAsianWidth(codePoint: number, options?: object): 1 | 2`
|
||||
|
||||
Returns the width as a number for the given code point.
|
||||
|
||||
### options
|
||||
|
||||
Type: `object`
|
||||
|
||||
#### ambiguousAsWide
|
||||
|
||||
Type: `boolean`\
|
||||
Default: `false`
|
||||
|
||||
Whether to treat an `'ambiguous'` character as wide.
|
||||
|
||||
```js
|
||||
import {eastAsianWidth} from 'get-east-asian-width';
|
||||
|
||||
const codePoint = '⛣'.codePointAt(0);
|
||||
|
||||
console.log(eastAsianWidth(codePoint));
|
||||
//=> 1
|
||||
|
||||
console.log(eastAsianWidth(codePoint, {ambiguousAsWide: true}));
|
||||
//=> 2
|
||||
```
|
||||
|
||||
> 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.**
|
||||
> - http://www.unicode.org/reports/tr11/
|
||||
|
||||
## `eastAsianWidthType(codePoint: number): 'fullwidth' | 'halfwidth' | 'wide' | 'narrow' | 'neutral' | 'ambiguous'`
|
||||
|
||||
Returns the type of “East Asian Width” for the given code point.
|
||||
|
||||
## Related
|
||||
|
||||
- [string-width](https://github.com/sindresorhus/string-width) - Get the visual width of a string
|
||||
24
node_modules/get-east-asian-width/utilities.js
generated
vendored
Normal file
24
node_modules/get-east-asian-width/utilities.js
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
/**
|
||||
Binary search on a sorted flat array of [start, end] pairs.
|
||||
|
||||
@param {number[]} ranges - Flat array of inclusive [start, end] range pairs, e.g. [0, 5, 10, 20].
|
||||
@param {number} codePoint - The value to search for.
|
||||
@returns {boolean} Whether the value falls within any of the ranges.
|
||||
*/
|
||||
export const isInRange = (ranges, codePoint) => {
|
||||
let low = 0;
|
||||
let high = Math.floor(ranges.length / 2) - 1;
|
||||
while (low <= high) {
|
||||
const mid = Math.floor((low + high) / 2);
|
||||
const i = mid * 2;
|
||||
if (codePoint < ranges[i]) {
|
||||
high = mid - 1;
|
||||
} else if (codePoint > ranges[i + 1]) {
|
||||
low = mid + 1;
|
||||
} else {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
};
|
||||
Reference in New Issue
Block a user