()
| 25 | if (typeof navigator !== "undefined" && navigator.clipboard) { |
| 26 | Object.defineProperty(this.locals, 'clipboard', { |
| 27 | get() { return navigator.clipboard.readText(); }, |
| 28 | set(v) { navigator.clipboard.writeText(String(v)); }, |
| 29 | enumerable: false, |
| 30 | configurable: true |
no test coverage detected