0.3.1 • Published 6 years ago

sketch-polyfill-settimeout v0.3.1

Weekly downloads
8
License
MIT
Repository
github
Last release
6 years ago

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'
)