UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

13 lines 335 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.setText = void 0; const setText = async (text) => { try { await navigator.clipboard.writeText(text); } catch (error) { throw new Error(error.message); } }; exports.setText = setText; //# sourceMappingURL=setText.js.map