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