Skip to content

Instantly share code, notes, and snippets.

@hexadeciman
Created February 26, 2015 16:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hexadeciman/0c395abfea6117a5dfae to your computer and use it in GitHub Desktop.
Save hexadeciman/0c395abfea6117a5dfae to your computer and use it in GitHub Desktop.
var x = req.param('x');
var y = req.param('y');
var z = req.param('z');
if( typeof x == 'undefined'
|| typeof y == 'undefined'
|| typeof z == 'undefined' )
return false;
return true;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment