(string, n)
| 422 | }); |
| 423 | |
| 424 | var _repeat = function(string, n){ |
| 425 | var result = ''; |
| 426 | for(var _n = 0; _n < n; _n++) result += string; |
| 427 | return result; |
| 428 | }; |
| 429 | |
| 430 | // add a forEach function that will work on a NodeList, etc.. |
| 431 | var forEach = function (array, callback, scope) { |
no outgoing calls
no test coverage detected