Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.216.250
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
is-fullwidth-code-point /
Delete
Unzip
Name
Size
Permission
Date
Action
index.cjs
1.59
KB
-rw-r--r--
2022-12-02 14:05
index.d.ts
549
B
-rw-r--r--
2022-12-02 14:05
index.js
1.57
KB
-rw-r--r--
2022-12-02 14:05
package.json
921
B
-rw-r--r--
2022-12-02 14:05
Save
Rename
/** Check if the character represented by a given [Unicode code point](https://en.wikipedia.org/wiki/Code_point) is [fullwidth](https://en.wikipedia.org/wiki/Halfwidth_and_fullwidth_forms). @param codePoint - The [code point](https://en.wikipedia.org/wiki/Code_point) of a character. @example ``` import isFullwidthCodePoint from 'is-fullwidth-code-point'; isFullwidthCodePoint('谢'.codePointAt(0)); //=> true isFullwidthCodePoint('a'.codePointAt(0)); //=> false ``` */ export default function isFullwidthCodePoint(codePoint: number): boolean;