mirror of
https://github.com/nodejs/node.git
synced 2025-05-18 19:31:09 +00:00

PR-URL: https://github.com/nodejs/io.js/pull/2286 Reviewed-By: Roman Reiss <me@silverwind.io>
35 lines
657 B
Markdown
35 lines
657 B
Markdown
# code-point-at [](https://travis-ci.org/sindresorhus/code-point-at)
|
|
|
|
> ES2015 [`String#codePointAt()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt) ponyfill
|
|
|
|
> Ponyfill: A polyfill that doesn't overwrite the native method
|
|
|
|
|
|
## Install
|
|
|
|
```
|
|
$ npm install --save code-point-at
|
|
```
|
|
|
|
|
|
## Usage
|
|
|
|
```js
|
|
var codePointAt = require('code-point-at');
|
|
|
|
codePointAt('🐴');
|
|
//=> 128052
|
|
|
|
codePointAt('abc', 2);
|
|
//=> 99
|
|
```
|
|
|
|
## API
|
|
|
|
### codePointAt(input, [position])
|
|
|
|
|
|
## License
|
|
|
|
MIT © [Sindre Sorhus](http://sindresorhus.com)
|