code-points
Get the code points of each character in the string
Last updated 11 years ago by shinnn .
MIT · Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install code-points 
SYNC missed versions from official npm registry.

code-points

npm version Build Status Coverage Status

Get the UTF-16-encoded code points of each character in the string

codePoints('Hello, 世界\n'); //=> [72, 101, 108, 108, 111, 44, 32, 19990, 30028]

Installation

Use npm.

npm install code-points

API

codePoints(str, option)

str: string
option: Object
Return: Array<integer>

It returns the code points of each character in the string as an array.

codePoints('\udada'); //=> [56026]
codePoints('\udfdf\udada\udada'); //=> [57311, 56026, 56026]
codePoints('\udada\udfdf\udada'); //=> [814047, 56026]

option.unique

Type: boolean
Default: false

Removes duplicates from result.

codePoints('banana'); //=> [98, 97, 110, 97, 110, 97]
codePoints('banana', {unique: true}); //=> [98,97,110]

License

Copyright (c) 2014 - 2019 Shinnosuke Watanabe

Licensed under the MIT License.

Current Tags

  • 2.0.0-1                                ...           latest (7 years ago)

7 Versions

  • 2.0.0-1                                ...           7 years ago
  • 2.0.0-0                                ...           7 years ago
  • 1.1.3                                ...           11 years ago
  • 1.1.2                                ...           11 years ago
  • 1.1.1                                ...           11 years ago
  • 1.1.0                                ...           11 years ago
  • 1.0.0                                ...           11 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 1
Last Month 2
Dependencies (4)
Dev Dependencies (15)
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |