UNPKG

festivals-model

Version:
17 lines (12 loc) 275 B
'use strict'; module.exports.FestivalTypeEnum = { FANTASY: 'FANTASY', MUSIC: 'MUSIC', MOBILIZATION: 'MOBILIZATION', getType: function (type) { if (!this.hasOwnProperty(type)) { return null; } return module.exports.FestivalTypeEnum[type]; } };