UNPKG

@boem312/minecraft-server

Version:

A pure JS library to create Minecraft Java 1.16.3 servers

10 lines (9 loc) 258 B
module.exports = { setTimeout(callback, delay) { let timeout = setTimeout(() => { this.p.timeouts = this.p.timeouts.filter(a => a !== timeout); callback(); }, delay); this.p.timeouts.push(timeout); } }