UNPKG

faceit-node-api

Version:

Lightweight node.js module for easier use of the Faceit Data API.

13 lines (12 loc) 321 B
import Faceit from '../Faceit.js'; export default class Matches extends Faceit { constructor() { super('matches/'); } getMatchDetails(match_id) { return this.processRequest(match_id); } getStatisticsOfAMatch(match_id) { return this.processRequest(`${match_id}/stats`); } }