Server IP : 185.86.78.101 / Your IP : 216.73.216.124 Web Server : Apache System : Linux 675867-vds-valikoshka1996.gmhost.pp.ua 5.4.0-150-generic #167-Ubuntu SMP Mon May 15 17:35:05 UTC 2023 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /www/wwwroot/mifepriston.org/node_modules/browser-sync/dist/ |
Upload File : |
"use strict"; var _ = require("./lodash.custom"); var Immutable = require("immutable"); var snippetUtils = require("./snippet").utils; module.exports = { /** * * @this {BrowserSync} * @returns {String} */ "client:js": function (hooks, data) { var js = snippetUtils.getClientJs(data.port, data.options); return hooks.reduce(function (acc, hook) { if (typeof hook === "function") { return acc.concat(hook); } return acc.concat(String(hook)); }, [js]); }, /** * @this {BrowserSync} * @returns {Array} */ "client:events": function (hooks, clientEvents) { hooks.forEach(function (hook) { var result = hook(this); if (Array.isArray(result)) { clientEvents = _.union(clientEvents, result); } else { clientEvents.push(result); } }, this); return clientEvents; }, /** * @returns {Array} */ "server:middleware": function (hooks, initial) { initial = initial || []; _.each(hooks, function (hook) { var result = hook(this); if (Array.isArray(result)) { result.forEach(function (res) { if (_.isFunction(res)) { initial = initial.push(res); } }); } else { if (_.isFunction(result)) { initial = initial.push(result); } } }, this); return initial; }, /** * @param {Array} hooks * @param {Map|List} initial * @param pluginOptions * @returns {any} */ "files:watch": function (hooks, initial, pluginOptions) { var opts; if (pluginOptions) { opts = Immutable.fromJS(pluginOptions); opts.forEach(function (value, key) { if (!value) { return; } var files = value.get("files"); if (files) { var fileArg = require("./cli/cli-options").makeFilesArg(files); if (fileArg) { initial = initial.set(key, Immutable.fromJS(fileArg)); } } }); } return initial; } }; //# sourceMappingURL=hooks.js.map