mirror of
https://codeup.aliyun.com/67c68d4e484ca2f0a13ac3c1/ydc/jsowell-charger-web.git
synced 2026-04-21 19:45:09 +08:00
9 lines
245 B
JavaScript
9 lines
245 B
JavaScript
|
|
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
|
||
|
|
});
|