mirror of
https://gitlab.com/octtspacc/staticoso
synced 2025-06-05 22:09:23 +02:00
First support for md extensions; Package all needed dependencies in the repo
This commit is contained in:
20
Source/node_modules/core-js/modules/web.timers.js
generated
vendored
Normal file
20
Source/node_modules/core-js/modules/web.timers.js
generated
vendored
Normal file
@ -0,0 +1,20 @@
|
||||
// ie9- setTimeout & setInterval additional parameters fix
|
||||
var global = require('./_global');
|
||||
var $export = require('./_export');
|
||||
var userAgent = require('./_user-agent');
|
||||
var slice = [].slice;
|
||||
var MSIE = /MSIE .\./.test(userAgent); // <- dirty ie9- check
|
||||
var wrap = function (set) {
|
||||
return function (fn, time /* , ...args */) {
|
||||
var boundArgs = arguments.length > 2;
|
||||
var args = boundArgs ? slice.call(arguments, 2) : false;
|
||||
return set(boundArgs ? function () {
|
||||
// eslint-disable-next-line no-new-func
|
||||
(typeof fn == 'function' ? fn : Function(fn)).apply(this, args);
|
||||
} : fn, time);
|
||||
};
|
||||
};
|
||||
$export($export.G + $export.B + $export.F * MSIE, {
|
||||
setTimeout: wrap(global.setTimeout),
|
||||
setInterval: wrap(global.setInterval)
|
||||
});
|
Reference in New Issue
Block a user