Sha256: 76a296ef5cace909fdb831a4a6b5291344446b20015fa1a65528c88c72f0806b
Contents?: true
Size: 337 Bytes
Versions: 69
Compression:
Stored size: 337 Bytes
Contents
define(['../array/slice'], function (slice) { /** * Delays the call of a function within a given context. */ function timeout(fn, millis, context){ var args = slice(arguments, 3); return setTimeout(function() { fn.apply(context, args); }, millis); } return timeout; });
Version data entries
69 entries across 69 versions & 2 rubygems