log.ts 350 B

1234567891011
  1. // Copyright (c) Jupyter Development Team.
  2. // Distributed under the terms of the Modified BSD License.
  3. export function log(content: any): void {
  4. let el = document.getElementById('output');
  5. if (typeof content !== 'string') {
  6. content = JSON.stringify(content);
  7. }
  8. el.textContent = el.textContent + '\n' + content;
  9. console.log(content);
  10. }