Skip to content

Instantly share code, notes, and snippets.

@sanketmaru
Last active August 29, 2015 14:05
Show Gist options
  • Save sanketmaru/453622585f35405387dc to your computer and use it in GitHub Desktop.
Save sanketmaru/453622585f35405387dc to your computer and use it in GitHub Desktop.
define([],function(){
var messages = {
'login': {
201: 'Email already taken',
400: 'Bad request',
503: 'The server is currently unavailable.'
}
};
return {
getMessage : function(prefix,statusCode) {
return messages[prefix][statusCode];
}
};
});
// call from login.js
getMessage('login',201);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment