UNPKG

actives-react

Version:
17 lines (14 loc) 204 B
export default class Timer { constructor() { this.time = 0; } get() { return this.time; } up() { this.time++; } down() { this.time--; } }