league-wrapper
Version:
REST API Wrapper for the League of Legends API
19 lines (16 loc) • 318 B
JavaScript
;
/**
* @readonly
* @enum
*/
const Season = {
SEASON3: 'SEASON3',
SEASON4: 'SEASON2014',
SEASON5: 'SEASON2015',
SEASON6: 'SEASON2016',
PRESEASON3: 'PRESEASON3',
PRESEASON4: 'PRESEASON2014',
PRESEASON5: 'PRESEASON2015',
PRESEASON6: 'PRESEASON2016'
};
exports = module.exports = Season;