INNER CODE UNIT · JavaScript

log

mdziekon/UniEngine · gulpfile.js:61

    const log = function (...args) {
        if (!opts.logChanges) {
            return;
        }

        flog(...args);
    };

    const stream = filterStream.obj(function (file) {
        if (file.isStream()) {
            this.emit("error", new PluginError(PLUGIN_NAME, "Streams are not supported!"));
            return;
        }

        if (!file.isBuffer()) {
            return;
        }

View source record →

📰 Research Paper
Loading…
⏳ Fetching content…