1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-04-03 20:53:29 +00:00
2020-03-03 22:30:50 +02:00
..
2020-03-03 22:30:50 +02:00
2020-03-03 22:30:50 +02:00
2020-03-03 22:30:50 +02:00
2020-03-03 22:30:50 +02: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