Skip to content

Instantly share code, notes, and snippets.

@jcastellanos003
Created July 23, 2015 17:06
Show Gist options
  • Save jcastellanos003/fc04e9da1d004e336e05 to your computer and use it in GitHub Desktop.
Save jcastellanos003/fc04e9da1d004e336e05 to your computer and use it in GitHub Desktop.
//Module
var EntitiesAPI = (function () {
//configurations
var defineProperties = function (obj, key, value) {
var config = {
value: value,
writable: true,
enumerable: true
};
Object.defineProperty(obj, key, config);
};
}());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment