Sha256: 03df7105f98e3a8db939a150882e83903ad4588aca8cbe96f1414b384d9dc864
Contents?: true
Size: 307 Bytes
Versions: 25
Compression:
Stored size: 307 Bytes
Contents
'use strict'; var $ = require('../internals/export'); var charAt = require('../internals/string-multibyte').charAt; // `String.prototype.at` method // https://github.com/mathiasbynens/String.prototype.at $({ target: 'String', proto: true }, { at: function at(pos) { return charAt(this, pos); } });
Version data entries
25 entries across 25 versions & 7 rubygems