'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