UNPKG

js-draw

Version:

Draw pictures using a pen, touchscreen, or mouse! JS-draw is a drawing library for JavaScript and TypeScript.

10 lines (9 loc) 313 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** Returns a promise that resolves after `timeout` milliseconds. */ const waitForTimeout = (timeout) => { return new Promise((resolve) => { setTimeout(() => resolve(), timeout); }); }; exports.default = waitForTimeout;