UNPKG

iplr

Version:

Node package for IPLR.

13 lines (8 loc) 199 B
export default class BaseClass { constructor () { this.matches = []; this.innings = []; } addMatch (match) { this.matches.push(match) } addInning (inning) { this.innings.push(inning) } }