Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

Timers module

setTimeout(), setImmediate(), and setInterval() simple replica for Minecraft Bedrock Edition script APIs (experimental).

Usage

import { setTimeout } from "./timers.js";

setTimeout(() => {
  console.log("Hello World");
}, 1000);

Compile & Test

Compile only

tsc

Unit test (include tsc)

npm run test