mirror of
https://github.com/vkaelin/LeagueStats.git
synced 2026-03-25 12:57:28 +00:00
20 lines
325 B
JavaScript
20 lines
325 B
JavaScript
'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
|