aboutsummaryrefslogtreecommitdiff
path: root/node_modules/enhanced-resolve/lib/util/process-browser.js
blob: 277f729d88c611025dcfd4613a885702077b0c14 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/*
	MIT License http://www.opensource.org/licenses/mit-license.php
	Author Tobias Koppers @sokra
*/

"use strict";

module.exports = {
	versions: {},
	nextTick(fn) {
		const args = Array.prototype.slice.call(arguments, 1);
		Promise.resolve().then(function () {
			fn.apply(null, args);
		});
	}
};