Skip to content

Instantly share code, notes, and snippets.

@imsickofmaps
Created August 7, 2013 15:25
Show Gist options
  • Select an option

  • Save imsickofmaps/6175072 to your computer and use it in GitHub Desktop.

Select an option

Save imsickofmaps/6175072 to your computer and use it in GitHub Desktop.
self.check_valid_emis = function(emis){
// returns false if fails to find
var numbers_only = new RegExp('^\\d+$');
if (numbers_only.test(emis)){
return im.config.array_emis.indexOf(parseInt(emis)) == -1;
} else {
return false;
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment