doum
刚刚 462a7c752afead89a100522aea8bbfadaea2aab9
1
2
3
4
5
6
7
8
9
'use strict';
var $ = require('../internals/export');
var repeat = require('../internals/string-repeat');
 
// `String.prototype.repeat` method
// https://tc39.es/ecma262/#sec-string.prototype.repeat
$({ target: 'String', proto: true }, {
  repeat: repeat
});