2022-01-21 08:28:41 +00:00
# is-fullwidth-code-point [![Build Status](https://travis-ci.org/sindresorhus/is-fullwidth-code-point.svg?branch=master)](https://travis-ci.org/sindresorhus/is-fullwidth-code-point)
> 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)
## Install
```
2022-04-08 10:55:35 +00:00
$ npm install --save is-fullwidth-code-point
2022-01-21 08:28:41 +00:00
```
## Usage
```js
2022-04-08 10:55:35 +00:00
var isFullwidthCodePoint = require('is-fullwidth-code-point');
2022-01-21 08:28:41 +00:00
2022-04-08 10:55:35 +00:00
isFullwidthCodePoint('谢'.codePointAt());
2022-01-21 08:28:41 +00:00
//=> true
2022-04-08 10:55:35 +00:00
isFullwidthCodePoint('a'.codePointAt());
2022-01-21 08:28:41 +00:00
//=> false
```
## API
2022-04-08 10:55:35 +00:00
### isFullwidthCodePoint(input)
2022-01-21 08:28:41 +00:00
2022-04-08 10:55:35 +00:00
#### input
2022-01-21 08:28:41 +00:00
Type: `number`
2022-04-08 10:55:35 +00:00
[Code point ](https://en.wikipedia.org/wiki/Code_point ) of a character.
2022-01-21 08:28:41 +00:00
## License
2022-04-08 10:55:35 +00:00
MIT © [Sindre Sorhus ](http://sindresorhus.com )