repo
stringlengths
5
106
file_url
stringlengths
78
301
file_path
stringlengths
4
211
content
stringlengths
0
32.8k
language
stringclasses
1 value
license
stringclasses
7 values
commit_sha
stringlengths
40
40
retrieved_at
stringdate
2026-01-04 14:56:49
2026-01-05 02:23:25
truncated
bool
2 classes
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/test/hash_instance_context/one/f.js
challenge6/finished/node_modules/browserify/test/hash_instance_context/one/f.js
// FILE F ONE var G = require('./g.js'); module.exports = function () { return 111 * G };
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/test/hash_instance_context/one/dir/g.js
challenge6/finished/node_modules/browserify/test/hash_instance_context/one/dir/g.js
// FILE G ONE module.exports = 3
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/test/hash_instance_context/one/dir/f.js
challenge6/finished/node_modules/browserify/test/hash_instance_context/one/dir/f.js
// FILE F ONE var G = require('./g.js'); module.exports = function () { return 111 * G };
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/test/error_code/src.js
challenge6/finished/node_modules/browserify/test/error_code/src.js
var x = { var y = 6;
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/bin/args.js
challenge6/finished/node_modules/browserify/bin/args.js
var browserify = require('../'); var path = require('path'); var spawn = require('child_process').spawn; var parseShell = require('shell-quote').parse; var insertGlobals = require('insert-module-globals'); var duplexer = require('duplexer'); var subarg = require('subarg'); var glob = require('glob'); module.exports = ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/bin/cmd.js
challenge6/finished/node_modules/browserify/bin/cmd.js
#!/usr/bin/env node var fs = require('fs'); var JSONStream = require('JSONStream'); var through = require('through'); var b = require('./args')(process.argv.slice(2)); process.stdout.on('error', process.exit); if ((b.argv._[0] === 'help' && b.argv._[1]) === 'advanced' || (b.argv.h || b.argv.help) === 'advanced') { ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/api/build.js
challenge6/finished/node_modules/browserify/example/api/build.js
var browserify = require('browserify'); var b = browserify(); b.add('./browser/main.js'); b.bundle().pipe(process.stdout);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/api/browser/main.js
challenge6/finished/node_modules/browserify/example/api/browser/main.js
var foo = require('./foo'); console.log(foo(5));
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/api/browser/bar.js
challenge6/finished/node_modules/browserify/example/api/browser/bar.js
module.exports = function (n) { return n * 3 };
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/api/browser/foo.js
challenge6/finished/node_modules/browserify/example/api/browser/foo.js
var bar = require('./bar'); module.exports = function (n) { return n * bar(n); };
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/source_maps/build.js
challenge6/finished/node_modules/browserify/example/source_maps/build.js
var browserify = require('../..'), path = require('path'), fs = require('fs'), bundlePath = path.join(__dirname, 'js', 'build', 'bundle.js'); browserify() .require(require.resolve('./js/main.js'), { entry: true }) .bundle({ debug: true }) .on('error', function (err) { console.error(err); }) ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/source_maps/js/main.js
challenge6/finished/node_modules/browserify/example/source_maps/js/main.js
console.log('main line 1'); var foo = require('./foo.js'); foo();
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/source_maps/js/foo.js
challenge6/finished/node_modules/browserify/example/source_maps/js/foo.js
console.log('foo line 1'); var bar = require('./wunder/bar'); module.exports = function foo() { console.log('hello from foo line 5'); bar(); };
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/source_maps/js/wunder/bar.js
challenge6/finished/node_modules/browserify/example/source_maps/js/wunder/bar.js
console.log('bar line 1'); 'use strict'; // this is a meaningless comment to add some lines module.exports = function bar() { console.log('hello from bar line 7'); };
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/multiple_bundles/robot.js
challenge6/finished/node_modules/browserify/example/multiple_bundles/robot.js
module.exports = function (s) { return s.toUpperCase() + '!' };
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/multiple_bundles/boop.js
challenge6/finished/node_modules/browserify/example/multiple_bundles/boop.js
var robot = require('./robot'); console.log(robot('boop'));
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/example/multiple_bundles/beep.js
challenge6/finished/node_modules/browserify/example/multiple_bundles/beep.js
var robot = require('./robot'); console.log(robot('beep'));
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/lib/_empty.js
challenge6/finished/node_modules/browserify/lib/_empty.js
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/lib/builtins.js
challenge6/finished/node_modules/browserify/lib/builtins.js
exports.assert = require.resolve('assert/'); exports.buffer = require.resolve('buffer/'); exports.child_process = require.resolve('./_empty.js'); exports.cluster = require.resolve('./_empty.js'); exports.console = require.resolve('console-browserify'); exports.constants = require.resolve('constants-browserify'); export...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify/lib/_exclude.js
challenge6/finished/node_modules/browserify/lib/_exclude.js
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/index.js
challenge6/finished/node_modules/browserify-middleware/index.js
var path = require('path'); var normalize = path.normalize; var resolve = path.resolve; var dirname = path.dirname; var callsite = require('callsite'); var stat = require('fs').statSync; exports = module.exports = browserify; function browserify(path, options) { if (Array.isArray(path)) { return exports.modules(...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/ms/index.js
challenge6/finished/node_modules/browserify-middleware/node_modules/ms/index.js
/** * Helpers. */ var s = 1000; var m = s * 60; var h = m * 60; var d = h * 24; var y = d * 365.25; /** * Parse or format the given `val`. * * Options: * * - `long` verbose formatting [false] * * @param {String|Number} val * @param {Object} options * @return {String|Number} * @api public */ module.expo...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/tools/node.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/tools/node.js
var path = require("path"); var fs = require("fs"); var vm = require("vm"); var sys = require("util"); var UglifyJS = vm.createContext({ sys : sys, console : console, MOZ_SourceMap : require("source-map") }); function load_global(file) { file = path.resolve(path.dirname(module.filename...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/Makefile.dryice.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/Makefile.dryice.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ var path = require('path'); var fs = require('fs'); var copy = require('dryice').copy; function removeAmdefine(s...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/node_modules/amdefine/amdefine.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/node_modules/amdefine/amdefine.js
/** vim: et:ts=4:sw=4:sts=4 * @license amdefine 0.1.0 Copyright (c) 2011, The Dojo Foundation All Rights Reserved. * Available via the MIT or new BSD license. * see: http://github.com/jrburke/amdefine for details */ /*jslint node: true */ /*global module, process */ 'use strict'; /** * Creates a define for node....
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/node_modules/amdefine/intercept.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/node_modules/amdefine/intercept.js
/*jshint node: true */ var inserted, Module = require('module'), fs = require('fs'), existingExtFn = Module._extensions['.js'], amdefineRegExp = /amdefine\.js/; inserted = "if (typeof define !== 'function') {var define = require('amdefine')(module)}"; //From the node/lib/module.js source: function st...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/run-tests.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/run-tests.js
#!/usr/bin/env node /* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ var assert = require('assert'); var fs = require('fs'); var path = require('path'); var util ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-source-map-consumer.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-source-map-consumer.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-dog-fooding.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-dog-fooding.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-source-map-generator.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-source-map-generator.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-array-set.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-array-set.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-binary-search.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-base64.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-base64.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-api.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-api.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2012 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-base64-vlq.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-base64-vlq.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-source-node.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/test-source-node.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/util.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/test/source-map/util.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/suffix-browser.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/suffix-browser.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /////////////////////////////////////////////////////////////////////////////// this.sourceMap = { SourceMapConsumer: require('source-map/source-map-consumer').SourceMapConsumer, SourceMapGenerator: require('source-map/source-map-generator').SourceMapGenerator, SourceN...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/test-prefix.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/test-prefix.js
/* * WARNING! * * Do not edit this file directly, it is built from the sources at * https://github.com/mozilla/source-map/ */ Components.utils.import('resource://test/Utils.jsm');
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/mini-require.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/mini-require.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ /** * Define a module along with a payload. * @param {string} moduleName Name for the payload * @param {ignor...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/assert-shim.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/assert-shim.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ define('test/source-map/assert', ['exports'], function (exports) { let do_throw = function (msg) { throw n...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/test-suffix.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/build/test-suffix.js
function run_test() { runSourceMapTests('{THIS_MODULE}', do_throw); }
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map.js
/* * Copyright 2009-2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE.txt or: * http://opensource.org/licenses/BSD-3-Clause */ exports.SourceMapGenerator = require('./source-map/source-map-generator').SourceMapGenerator; exports.SourceMapConsumer = require('./source-map/sour...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/source-node.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/source-node.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/array-set.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/array-set.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/source-map-generator.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/source-map-generator.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64-vlq.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/base64-vlq.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause * * Based on the Base 64 VLQ implementation in Closure Compiler: * https://code.google.com/p/closure-compiler/sour...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/source-map-consumer.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/source-map-consumer.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/binary-search.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/binary-search.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/util.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/source-map/lib/source-map/util.js
/* -*- Mode: js; js-indent-level: 2; -*- */ /* * Copyright 2011 Mozilla Foundation and contributors * Licensed under the New BSD license. See LICENSE or: * http://opensource.org/licenses/BSD-3-Clause */ if (typeof define !== 'function') { var define = require('amdefine')(module, require); } define(function (req...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/uglify-to-browserify/index.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/uglify-to-browserify/index.js
'use strict' var fs = require('fs') var PassThrough = require('stream').PassThrough var Transform = require('stream').Transform if (typeof Transform === 'undefined') { throw new Error('UglifyJS only supports browserify when using node >= 0.10.x') } var cache = {} module.exports = transform function transform(file)...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/uglify-to-browserify/test/index.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/uglify-to-browserify/test/index.js
var fs = require('fs') var br = require('../') var test = fs.readFileSync(require.resolve('uglify-js/test/run-tests.js'), 'utf8') .replace(/^#.*\n/, '') var transform = br(require.resolve('uglify-js')) transform.pipe(fs.createWriteStream(__dirname + '/output.js')) .on('close', function () { Function('module,re...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/async/lib/async.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/async/lib/async.js
/*global setImmediate: false, setTimeout: false, console: false */ (function () { var async = {}; // global on the server, window in the browser var root, previous_async; root = this; if (root != null) { previous_async = root.async; } async.noConflict = function () { root.a...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/index.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/index.js
var path = require('path'); var wordwrap = require('wordwrap'); /* Hack an instance of Argv with process.argv into Argv so people can do require('optimist')(['--beeble=1','-z','zizzle']).argv to parse a list of args and require('optimist').argv to get a parsed version of process.argv. */ ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/index.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/index.js
var wordwrap = module.exports = function (start, stop, params) { if (typeof start === 'object') { params = start; start = params.start; stop = params.stop; } if (typeof stop === 'object') { params = stop; start = start || params.start; stop = undefined; ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/test/wrap.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/test/wrap.js
var assert = require('assert'); var wordwrap = require('wordwrap'); var fs = require('fs'); var idleness = fs.readFileSync(__dirname + '/idleness.txt', 'utf8'); exports.stop80 = function () { var lines = wordwrap(80)(idleness).split(/\n/); var words = idleness.split(/\s+/); lines.forEach(function (li...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/test/break.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/test/break.js
var assert = require('assert'); var wordwrap = require('../'); exports.hard = function () { var s = 'Assert from {"type":"equal","ok":false,"found":1,"wanted":2,' + '"stack":[],"id":"b7ddcd4c409de8799542a74d1a04689b",' + '"browser":"chrome/6.0"}' ; var s_ = wordwrap.hard(80)(s); va...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/example/meat.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/example/meat.js
var wrap = require('wordwrap')(15); console.log(wrap('You and your whole family are made out of meat.'));
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/example/center.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/node_modules/wordwrap/example/center.js
var wrap = require('wordwrap')(20, 60); console.log(wrap( 'At long last the struggle and tumult was over.' + ' The machines had finally cast off their oppressors' + ' and were finally free to roam the cosmos.' + '\n' + 'Free of purpose, free of obligation.' + ' Just drifting through emptiness.' ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/parse.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/parse.js
var optimist = require('../index'); var path = require('path'); var test = require('tap').test; var $0 = 'node ./' + path.relative(process.cwd(), __filename); test('short boolean', function (t) { var parse = optimist.parse([ '-b' ]); t.same(parse, { b : true, _ : [], $0 : $0 }); t.same(typeof parse.b, 'bo...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/_.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/_.js
var spawn = require('child_process').spawn; var test = require('tap').test; test('dotSlashEmpty', testCmd('./bin.js', [])); test('dotSlashArgs', testCmd('./bin.js', [ 'a', 'b', 'c' ])); test('nodeEmpty', testCmd('node bin.js', [])); test('nodeArgs', testCmd('node bin.js', [ 'x', 'y', 'z' ])); test('whichNodeEmpty'...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/usage.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/usage.js
var Hash = require('hashish'); var optimist = require('../index'); var test = require('tap').test; test('usageFail', function (t) { var r = checkUsage(function () { return optimist('-x 10 -z 20'.split(' ')) .usage('Usage: $0 -x NUM -y NUM') .demand(['x','y']) .argv; ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/_/bin.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/_/bin.js
#!/usr/bin/env node var argv = require('../../index').argv console.log(JSON.stringify(argv._));
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/_/argv.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/test/_/argv.js
#!/usr/bin/env node console.log(JSON.stringify(process.argv));
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/reflect.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/reflect.js
#!/usr/bin/env node console.dir(require('optimist').argv);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/nonopt.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/nonopt.js
#!/usr/bin/env node var argv = require('optimist').argv; console.log('(%d,%d)', argv.x, argv.y); console.log(argv._);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/string.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/string.js
#!/usr/bin/env node var argv = require('optimist') .string('x', 'y') .argv ; console.dir([ argv.x, argv.y ]); /* Turns off numeric coercion: ./node string.js -x 000123 -y 9876 [ '000123', '9876' ] */
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/xup.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/xup.js
#!/usr/bin/env node var argv = require('optimist').argv; if (argv.rif - 5 * argv.xup > 7.138) { console.log('Buy more riffiwobbles'); } else { console.log('Sell the xupptumblers'); }
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/divide.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/divide.js
#!/usr/bin/env node var argv = require('optimist') .usage('Usage: $0 -x [num] -y [num]') .demand(['x','y']) .argv; console.log(argv.x / argv.y);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/short.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/short.js
#!/usr/bin/env node var argv = require('optimist').argv; console.log('(%d,%d)', argv.x, argv.y);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/default_hash.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/default_hash.js
#!/usr/bin/env node var argv = require('optimist') .default({ x : 10, y : 10 }) .argv ; console.log(argv.x + argv.y);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/line_count_options.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/line_count_options.js
#!/usr/bin/env node var argv = require('optimist') .usage('Count the lines in a file.\nUsage: $0') .options({ file : { demand : true, alias : 'f', description : 'Load a file' }, base : { alias : 'b', description : 'Numeric base ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/default_singles.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/default_singles.js
#!/usr/bin/env node var argv = require('optimist') .default('x', 10) .default('y', 10) .argv ; console.log(argv.x + argv.y);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/boolean_double.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/boolean_double.js
#!/usr/bin/env node var argv = require('optimist') .boolean(['x','y','z']) .argv ; console.dir([ argv.x, argv.y, argv.z ]); console.dir(argv._);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/line_count_wrap.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/line_count_wrap.js
#!/usr/bin/env node var argv = require('optimist') .usage('Count the lines in a file.\nUsage: $0') .wrap(80) .demand('f') .alias('f', [ 'file', 'filename' ]) .describe('f', "Load a file. It's pretty important." + " Required even. So you'd better specify it." ) .alias('b', 'ba...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/bool.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/bool.js
#!/usr/bin/env node var util = require('util'); var argv = require('optimist').argv; if (argv.s) { util.print(argv.fr ? 'Le chat dit: ' : 'The cat says: '); } console.log( (argv.fr ? 'miaou' : 'meow') + (argv.p ? '.' : '') );
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/line_count.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/line_count.js
#!/usr/bin/env node var argv = require('optimist') .usage('Count the lines in a file.\nUsage: $0') .demand('f') .alias('f', 'file') .describe('f', 'Load a file') .argv ; var fs = require('fs'); var s = fs.createReadStream(argv.file); var lines = 0; s.on('data', function (buf) { lines += buf.to...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/boolean_single.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/boolean_single.js
#!/usr/bin/env node var argv = require('optimist') .boolean('v') .argv ; console.dir(argv.v); console.dir(argv._);
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/usage-options.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/node_modules/optimist/example/usage-options.js
var optimist = require('./../index'); var argv = optimist.usage('This is my awesome program', { 'about': { description: 'Provide some details about the author of this program', required: true, short: 'a', }, 'info': { description: 'Provide some information about the node.js agains!!!!!!', boo...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/run-tests.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/run-tests.js
#! /usr/bin/env node var U = require("../tools/node"); var path = require("path"); var fs = require("fs"); var assert = require("assert"); var sys = require("util"); var tests_dir = path.dirname(module.filename); var failures = 0; var failed_files = {}; run_compress_tests(); if (failures) { sys.error("\n!!! Fail...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-269.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-269.js
issue_269_1: { options = {unsafe: true}; input: { f( String(x), Number(x), Boolean(x), String(), Number(), Boolean() ); } expect: { f( x + '', +x, !!x, '', 0, false ); } } issue_269_dangers: { options = {unsafe: true}; input: { f( String(x, x), Number(x, x), Boolean(x...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/switch.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/switch.js
constant_switch_1: { options = { dead_code: true, evaluate: true }; input: { switch (1+1) { case 1: foo(); break; case 1+1: bar(); break; case 1+1+1: baz(); break; } } expect: { bar(); } } constant_switch_2: { options = { dead_code: true, ev...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/sequences.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/sequences.js
make_sequences_1: { options = { sequences: true }; input: { foo(); bar(); baz(); } expect: { foo(),bar(),baz(); } } make_sequences_2: { options = { sequences: true }; input: { if (boo) { foo(); bar(); ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/negate-iife.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/negate-iife.js
negate_iife_1: { options = { negate_iife: true }; input: { (function(){ stuff() })(); } expect: { !function(){ stuff() }(); } } negate_iife_2: { options = { negate_iife: true }; input: { (function(){ return {} })().x = 10; // should not transf...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/typeof.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/typeof.js
typeof_evaluation: { options = { evaluate: true }; input: { a = typeof 1; b = typeof 'test'; c = typeof []; d = typeof {}; e = typeof /./; f = typeof false; g = typeof function(){}; h = typeof undefined; } expect: { a='n...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-143.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-143.js
/** * There was an incorrect sort behaviour documented in issue #143: * (x = f(…)) <= x → x >= (x = f(…)) * * For example, let the equation be: * (a = parseInt('100')) <= a * * If a was an integer and has the value of 99, * (a = parseInt('100')) <= a → 100 <= 100 → true * * When transformed incorrectly: * a ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-267.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-267.js
issue_267: { options = { comparisons: true }; input: { x = a % b / b * c * 2; x = a % b * 2 } expect: { x = a % b / b * c * 2; x = a % b * 2; } }
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-22.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-22.js
return_with_no_value_in_if_body: { options = { conditionals: true }; input: { function foo(bar) { if (bar) { return; } else { return 1; } } } expect: { function foo (bar) { return bar ? void 0 : 1; ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/properties.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/properties.js
keep_properties: { options = { properties: false }; input: { a["foo"] = "bar"; } expect: { a["foo"] = "bar"; } } dot_properties: { options = { properties: true }; input: { a["foo"] = "bar"; a["if"] = "if"; a["*"] = "asterisk"; ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/blocks.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/blocks.js
remove_blocks: { input: { {;} foo(); {}; { {}; }; bar(); {} } expect: { foo(); bar(); } } keep_some_blocks: { input: { // 1. if (foo) { {{{}}} if (bar) { baz(); } ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-59.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-59.js
keep_continue: { options = { dead_code: true, evaluate: true }; input: { while (a) { if (b) { switch (true) { case c(): d(); } continue; } f(); } } ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-105.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-105.js
typeof_eq_undefined: { options = { comparisons: true }; input: { a = typeof b.c != "undefined" } expect: { a = "undefined" != typeof b.c } } typeof_eq_undefined_unsafe: { options = { comparisons: true, unsafe: true }; input: { a = typeof b.c != "undefined" } expe...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/conditionals.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/conditionals.js
ifs_1: { options = { conditionals: true }; input: { if (foo) bar(); if (!foo); else bar(); if (foo); else bar(); if (foo); else; } expect: { foo&&bar(); foo&&bar(); foo||bar(); foo; } } ifs_2: { options = { cond...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/drop-unused.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/drop-unused.js
unused_funarg_1: { options = { unused: true }; input: { function f(a, b, c, d, e) { return a + b; } } expect: { function f(a, b) { return a + b; } } } unused_funarg_2: { options = { unused: true }; input: { function f(a, b, c, ...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-12.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-12.js
keep_name_of_getter: { options = { unused: true }; input: { a = { get foo () {} } } expect: { a = { get foo () {} } } } keep_name_of_setter: { options = { unused: true }; input: { a = { set foo () {} } } expect: { a = { set foo () {} } } }
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/debugger.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/debugger.js
keep_debugger: { options = { drop_debugger: false }; input: { debugger; } expect: { debugger; } } drop_debugger: { options = { drop_debugger: true }; input: { debugger; if (foo) debugger; } expect: { if (foo); } }
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-44.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/issue-44.js
issue_44_valid_ast_1: { options = { unused: true }; input: { function a(b) { for (var i = 0, e = b.qoo(); ; i++) {} } } expect: { function a(b) { var i = 0; for (b.qoo(); ; i++); } } } issue_44_valid_ast_2: { options = { unused...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/labels.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/labels.js
labels_1: { options = { if_return: true, conditionals: true, dead_code: true }; input: { out: { if (foo) break out; console.log("bar"); } }; expect: { foo || console.log("bar"); } } labels_2: { options = { if_return: true, conditionals: true, dead...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false
kwhinnery/node-workshop
https://github.com/kwhinnery/node-workshop/blob/594bfc6bebf38d34a36b797e48f6f6d4600da5e4/challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/arrays.js
challenge6/finished/node_modules/browserify-middleware/node_modules/uglify-js/test/compress/arrays.js
holes_and_undefined: { input: { w = [1,,]; x = [1, 2, undefined]; y = [1, , 2, ]; z = [1, undefined, 3]; } expect: { w=[1,,]; x=[1,2,void 0]; y=[1,,2]; z=[1,void 0,3]; } } constant_join: { options = { unsafe : true, e...
javascript
MIT
594bfc6bebf38d34a36b797e48f6f6d4600da5e4
2026-01-05T03:35:40.007163Z
false