copyCode()

in src/app/app.component.ts [110:114]


  copyCode({tagName, textContent}) {
    if (tagName === 'CODE') {
      this.clipboard.copy(textContent);
    }
  }