UNPKG

@genexus/web-standard-functions

Version:

GeneXus JavaScript standard functions library for web generators

10 lines 237 B
export const getText = async () => { try { const text = await navigator.clipboard.readText(); return text; } catch (error) { throw new Error(error.message); } }; //# sourceMappingURL=getText.js.map