Sha256: 2a80478f1271f137ab6ff6a2564fbfc1c4c31e7dd3864d5e7777367b39fa7668
Contents?: true
Size: 361 Bytes
Versions: 6
Compression:
Stored size: 361 Bytes
Contents
var webfont = {}; /** * @param {Object} context * @param {function(...[*])} func * @param {...*} opt_args */ webfont.bind = function(context, func, opt_args) { var args = arguments.length > 2 ? Array.prototype.slice.call(arguments, 2) : []; return function() { args.push.apply(args, arguments); return func.apply(context, args); }; };
Version data entries
6 entries across 6 versions & 1 rubygems