Lines Matching refs:opts

25646   var opts = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};
25664 Object.assign(this, opts || {});
25666 if (typeof (opts === null || opts === void 0 ? void 0 : opts.quoteHeaders) === 'undefined') {
25670 if ((opts === null || opts === void 0 ? void 0 : opts.quote) === true) {
25672 } else if ((opts === null || opts === void 0 ? void 0 : opts.quote) === false) {
25676 if (typeof (opts === null || opts === void 0 ? void 0 : opts.escape) !== 'string') {
25680 …this.shouldWriteHeaders = !!this.headers && ((_a = opts.writeHeaders) !== null && _a !== void 0 ? …
26172 var opts = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};
26184 exports.write(rows, opts).pipe(ws);
26556 var ParserOptions = function ParserOptions(opts) {
26582 Object.assign(this, opts || {});
37988 function DES(opts) {
37990 var modeName = opts.mode.toLowerCase();
37994 if (opts.decrypt) {
38000 var key = opts.key;
38010 var iv = opts.iv;
52413 opts = {};
52416 opts = utils.extend(options || {}, {
52426 opts.type = opts.type.toLowerCase();
52427opts.compression = opts.compression.toUpperCase(); // "binarystring" is preferred but the internal…
52429 if (opts.type === "binarystring") {
52430 opts.type = "string";
52433 if (!opts.type) {
52437 utils.checkSupport(opts.type); // accept nodejs `process.platform`
52439 …if (opts.platform === 'darwin' || opts.platform === 'freebsd' || opts.platform === 'linux' || opts
52440 opts.platform = "UNIX";
52443 if (opts.platform === 'win32') {
52444 opts.platform = "DOS";
52447 var comment = opts.comment || this.comment || "";
52448 worker = generate.generateWorker(this, opts, comment);
52454 return new StreamHelper(worker, opts.type || "string", opts.mimeType);
66378 var opts;
67087 opts = {
67090 ret = inflate_table(CODES, state.lens, 0, 19, state.lencode, 0, state.work, opts);
67091 state.lenbits = opts.bits;
67250 opts = {
67253 …ret = inflate_table(LENS, state.lens, 0, state.nlen, state.lencode, 0, state.work, opts); // We ha…
67256 state.lenbits = opts.bits; // state.lencode = state.next;
67268 opts = {
67271 …ISTS, state.lens, state.nlen, state.ndist, state.distcode, 0, state.work, opts); // We have separa…
67274 state.distbits = opts.bits; // state.distcode = state.next;
67928 …e.exports = function inflate_table(type, lens, lens_index, codes, table, table_index, work, opts) {
67929 var bits = opts.bits; //here = opts.here; /* table entry for duplication */
68051 opts.bits = 1;
68306 opts.bits = root;
72731 Readable.from = function (iterable, opts) {
72736 return from(Readable, iterable, opts);
74286 function eos(stream, opts, callback) {
74287 if (typeof opts === 'function') return eos(stream, null, opts);
74288 if (!opts) opts = {};
74290 var readable = opts.readable || opts.readable !== false && stream.readable;
74291 var writable = opts.writable || opts.writable !== false && stream.writable;
74347 if (opts.error !== false) stream.on('error', onerror);
81989 function inspect(obj, opts) {
81999 if (isBoolean(opts)) {
82001 ctx.showHidden = opts;
82002 } else if (opts) {
82004 exports._extend(ctx, opts);