Skip to content

Instantly share code, notes, and snippets.

@Alex1990
Created May 10, 2016 21:22
Show Gist options
  • Select an option

  • Save Alex1990/edf076d01ac0135fbcb250c7479b7a00 to your computer and use it in GitHub Desktop.

Select an option

Save Alex1990/edf076d01ac0135fbcb250c7479b7a00 to your computer and use it in GitHub Desktop.
A set function works in development environment.
/**
* A set function works in development environment.
*/
function set(vari, value) {
if (ENV === 'dev') {
vari = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment