Name |
Date |
Size |
#Lines |
LOC |
||
---|---|---|---|---|---|---|
.. | - | - | ||||
index.js | D | 12-May-2024 | 610 | 33 | 23 | |
license | D | 12-May-2024 | 1.1 KiB | 22 | 17 | |
package.json | D | 12-May-2024 | 1.8 KiB | 75 | 74 | |
readme.md | D | 12-May-2024 | 617 | 33 | 18 |
readme.md
1# code-point-at [](https://travis-ci.org/sindresorhus/code-point-at) 2 3> ES2015 [`String#codePointAt()`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/codePointAt) [ponyfill](https://ponyfill.com) 4 5 6## Install 7 8``` 9$ npm install --save code-point-at 10``` 11 12 13## Usage 14 15```js 16var codePointAt = require('code-point-at'); 17 18codePointAt('��'); 19//=> 128052 20 21codePointAt('abc', 2); 22//=> 99 23``` 24 25## API 26 27### codePointAt(input, [position]) 28 29 30## License 31 32MIT © [Sindre Sorhus](https://sindresorhus.com) 33