Skip to content

Instantly share code, notes, and snippets.

@RudolfVonKrugstein
Created July 16, 2012 12:42
Show Gist options
  • Save RudolfVonKrugstein/3122477 to your computer and use it in GitHub Desktop.
Save RudolfVonKrugstein/3122477 to your computer and use it in GitHub Desktop.
haste global objects js
function jsSaveGlobalObject(name, obj) {
allObjects[name] = obj;
return [1,0];
}
function jsLoadGlobalObject(name) {
return [1,0,allObjects[name]];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment