Version 1
[yaffs-website] / node_modules / core-js / library / modules / es7.string.at.js
1 'use strict';
2 // https://github.com/mathiasbynens/String.prototype.at
3 var $export = require('./_export')
4   , $at     = require('./_string-at')(true);
5
6 $export($export.P, 'String', {
7   at: function at(pos){
8     return $at(this, pos);
9   }
10 });