Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

es.string.code-point-at.js 339B

1234567891011
  1. 'use strict';
  2. var $ = require('../internals/export');
  3. var codeAt = require('../internals/string-multibyte').codeAt;
  4. // `String.prototype.codePointAt` method
  5. // https://tc39.es/ecma262/#sec-string.prototype.codepointat
  6. $({ target: 'String', proto: true }, {
  7. codePointAt: function codePointAt(pos) {
  8. return codeAt(this, pos);
  9. }
  10. });