LeagueStats/server/app/Transformers/MatchTransformer.js

21 lines
325 B
JavaScript
Raw Normal View History

'use strict'
/**
* MatchTransformer class
*
* @class MatchTransformer
*/
class MatchTransformer {
/**
* This method is used to transform the data.
*/
transform (match) {
// TODO : implement this method
return {
// add your transformation object here
}
}
}
module.exports = MatchTransformer