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) 274 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); /** @internal */ const untilNextAnimationFrame = () => { return new Promise((resolve) => { requestAnimationFrame(() => resolve()); }); }; exports.default = untilNextAnimationFrame;