es7.string.at.js 242 B

12345678910
  1. 'use strict';
  2. // https://github.com/mathiasbynens/String.prototype.at
  3. var $export = require('./$.export')
  4. , $at = require('./$.string-at')(true);
  5. $export($export.P, 'String', {
  6. at: function at(pos){
  7. return $at(this, pos);
  8. }
  9. });