()
| 28 | /////////////////////////////// |
| 29 | |
| 30 | function log() { |
| 31 | document.getElementById("out").innerText = ""; |
| 32 | |
| 33 | Array.prototype.forEach.call(arguments, function(msg) { |
| 34 | if (msg instanceof Error) { |
| 35 | msg = "Error: " + msg.message; |
| 36 | } |
| 37 | else if (typeof msg !== "string") { |
| 38 | msg = JSON.stringify(msg, null, 2); |
| 39 | } |
| 40 | document.getElementById("out").innerHTML += msg + "\r\n"; |
| 41 | }); |
| 42 | } |
| 43 | |
| 44 | var mgr = new UserManager(settings); |
| 45 |
no outgoing calls
no test coverage detected