UNPKG

173 BJavaScriptView Raw
1"use strict";
2
3// mout/string/repeat seems too complicated sometimes
4
5module.exports = function(str, times) {
6 return Array.apply(null, {length : times + 1}).join(str);
7};