glass-platform
Version:
Glass platform
28 lines (20 loc) • 421 B
JavaScript
// Generated by CoffeeScript 1.6.2
(function() {
var Enum;
module.exports = Enum = (function() {
function Enum(name, value) {
this.name = name;
this.value = value;
}
Enum.prototype.toString = function() {
return this.name;
};
Enum.prototype.valueOf = function() {
return this.value;
};
return Enum;
})();
}).call(this);
/*
//@ sourceMappingURL=Enum.map
*/