Sha256: 41266d6d206216a25bfa5a523fafdbdb9d006b69987badbbe9265706e7568958
Contents?: true
Size: 344 Bytes
Versions: 7
Compression:
Stored size: 344 Bytes
Contents
/*! https://mths.be/repeat v1.0.0 by @mathias */ 'use strict'; var define = require('define-properties'); var getPolyfill = require('./polyfill'); module.exports = function shimRepeat() { var polyfill = getPolyfill(); if (String.prototype.repeat !== polyfill) { define(String.prototype, { repeat: polyfill }); } return polyfill; };
Version data entries
7 entries across 7 versions & 1 rubygems