Skip to content

Instantly share code, notes, and snippets.

View jacebenson's full-sized avatar

Jace jacebenson

View GitHub Profile
@jacebenson
jacebenson / background-script-test-es6.js
Last active August 12, 2022 15:28
Test SN for ES6 stuff
// run this in your background
var test = function(name, code){
try{
eval(code)
gs.print("SUPPORTED - " + name)
} catch(e){
gs.print("NOT SUPPORTED - " + name + ' - ' + e)
}
}
test('const', 'const a="test"')