(array, func)
| 3 | This script is run at build time to generate api.md - a single Markdown document containing documentation for ScriptCraft's API |
| 4 | */ |
| 5 | function foreach(array, func) { |
| 6 | for (var i = 0; i < array.length; i++) { |
| 7 | func(array[i], i, array); |
| 8 | } |
| 9 | } |
| 10 | /* |
| 11 | find - a (very) basic implementation of the unix command line tool. |
| 12 | */ |
no outgoing calls
no test coverage detected