Apply module bundling
[platform/framework/web/wrtjs.git] / node_modules / enhanced-resolve / lib / util / process-browser.js
1 /*
2         MIT License http://www.opensource.org/licenses/mit-license.php
3         Author Tobias Koppers @sokra
4 */
5
6 "use strict";
7
8 module.exports = {
9         versions: {},
10         nextTick(fn) {
11                 const args = Array.prototype.slice.call(arguments, 1);
12                 Promise.resolve().then(function () {
13                         fn.apply(null, args);
14                 });
15         }
16 };