sketch-polyfill-settimeout
v0.3.1
Published
A setTimeout polyfill for sketch
Downloads
35
Maintainers
Readme
sketch-polyfill-setTimeout
A setTimeout and clearTimeout polyfill for sketch. It is automatically included (when needed) when using skpm.
Installation
npm i -S sketch-polyfill-settimeout
Usage
import {setTimeout, clearTimeout} from 'sketch-polyfill-settimeout'
setTimeout(
(param) => console.log(param),
1000,
'hello world'
)