(...args: any)
| 510 | //(<any>window).native = native; |
| 511 | |
| 512 | function nativeLog(...args: any): void { |
| 513 | // eslint-disable-next-line prefer-rest-params |
| 514 | const results = Array.prototype.join.call(args, " "); |
| 515 | console.log("native.Log: ", results); |
| 516 | //NativeScriptCap.notify( {value: JSON.stringify({cmd: NS_MARSHALL_CONSOLE, log: results})}); |
| 517 | } |
no outgoing calls
no test coverage detected