Basic method wrappers
(text)
| 1 | /** Basic method wrappers **/ |
| 2 | function trace(text){ |
| 3 | self.postMessage(JSON.stringify({ |
| 4 | "action":"Trace", |
| 5 | "obj":text |
| 6 | })); |
| 7 | }; |
| 8 | |
| 9 | function foreach(dtype, f){ |
| 10 | for(var x in dtype){ |
no outgoing calls
no test coverage detected