Skip to content

Instantly share code, notes, and snippets.

@uhunkler
uhunkler / clipboard-test.jstalk
Last active August 23, 2017 12:14
clipboard handling in JSTalk for Sketch
// @requires https://gist.github.com/uhunkler/5465857
var text = 'to clipboard ' + new Date(),
returnedtext = '';
clipboard.set( text );
returnedtext = clipboard.get();
test.assert( text === returnedtext, 'Text correctly copied and read to/from the clipboard' );
test.show();