thedesk/app/node_modules/code-point-at
2019-09-12 23:38:13 +09:00
..
index.js Add: node_modules 2019-09-12 23:38:13 +09:00
license Add: node_modules 2019-09-12 23:38:13 +09:00
package.json Add: node_modules 2019-09-12 23:38:13 +09:00
readme.md Add: node_modules 2019-09-12 23:38:13 +09:00

code-point-at Build Status

ES2015 String#codePointAt() ponyfill

Install

$ npm install --save code-point-at

Usage

var codePointAt = require('code-point-at');

codePointAt('🐴');
//=> 128052

codePointAt('abc', 2);
//=> 99

API

codePointAt(input, [position])

License

MIT © Sindre Sorhus