mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-04-22 09:09:09 +00:00
10 lines
249 B
JavaScript
10 lines
249 B
JavaScript
'use strict';
|
|
var $export = require('./_export');
|
|
var $at = require('./_string-at')(false);
|
|
$export($export.P, 'String', {
|
|
// 21.1.3.3 String.prototype.codePointAt(pos)
|
|
codePointAt: function codePointAt(pos) {
|
|
return $at(this, pos);
|
|
}
|
|
});
|