How to use the ignore function from hoek

Find comprehensive JavaScript hoek.ignore code examples handpicked from public code repositorys.

56
57
58
59
60
61
62
63
64
65
    handlers: {},
    extensions: {}
};
this._server = server;
this._dataStream = new Stream.Readable({ objectMode: true });
this._dataStream._read = Hoek.ignore;

// Options used to create Great Response
this._responseOptions = {
    requestHeaders: this.settings.requestHeaders,
fork icon165
star icon1
watch icon2

179
180
181
182
183
184
185
186
187
188
};


internals.Policy.prototype.set = function (key, value, ttl, callback) {

    callback = callback || Hoek.ignore;

    if (!this._cache) {
        return callback(null);
    }
fork icon74
star icon0
watch icon2

+ 3 other calls in file