text
stringlengths
9
39.2M
dir
stringlengths
25
226
lang
stringclasses
163 values
created_date
timestamp[s]
updated_date
timestamp[s]
repo_name
stringclasses
751 values
repo_full_name
stringclasses
752 values
star
int64
1.01k
183k
len_tokens
int64
1
18.5M
```javascript !function(t){if("function"==typeof bootstrap)bootstrap("nedb",t);else if("object"==typeof exports)module.exports=t();else if("function"==typeof define&&define.amd)define(t);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeNedb=t}else"undefined"!=typeof window?window.Nedb=t():global.Nedb=t()}(f...
/content/code_sandbox/node_modules/nedb/browser-version/out/nedb.min.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
30,648
```javascript /** * Manage access to data, be it to find, update or remove it */ var model = require('./model') , _ = require('underscore') ; /** * Create a new cursor for this collection * @param {Datastore} db - The datastore this cursor is bound to * @param {Query} query - The query this cursor will oper...
/content/code_sandbox/node_modules/nedb/lib/cursor.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,210
```javascript /** * Handle models (i.e. docs) * Serialization/deserialization * Copying * Querying, update */ var util = require('util') , _ = require('underscore') , modifierFunctions = {} , lastStepModifierFunctions = {} , comparisonFunctions = {} , logicalOperators = {} , arrayComparisonFunctions =...
/content/code_sandbox/node_modules/nedb/lib/model.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
6,111
```javascript /** * Handle every persistence-related task * The interface Datastore expects to be implemented is * * Persistence.loadDatabase(callback) and callback has signature err * * Persistence.persistNewState(newDocs, callback) where newDocs is an array of documents and callback has signature err */ var sto...
/content/code_sandbox/node_modules/nedb/lib/persistence.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,449
```javascript /** * Way data is stored for this database * For a Node.js/Node Webkit database it's the file system * For a browser-side database it's localforage which chooses the best option depending on user browser (IndexedDB then WebSQL then localStorage) * * This version is the Node.js/Node Webkit version * ...
/content/code_sandbox/node_modules/nedb/lib/storage.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
990
```javascript var customUtils = require('./customUtils') , model = require('./model') , async = require('async') , Executor = require('./executor') , Index = require('./indexes') , util = require('util') , _ = require('underscore') , Persistence = require('./persistence') , Cursor = require('./cursor') ...
/content/code_sandbox/node_modules/nedb/lib/datastore.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
4,642
```javascript var crypto = require('crypto') , fs = require('fs') ; /** * Return a random alphanumerical string of length len * There is a very small probability (less than 1/1,000,000) for the length to be less than len * (il the base64 conversion yields too many pluses and slashes) but * that's not an issue ...
/content/code_sandbox/node_modules/nedb/lib/customUtils.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
179
```javascript var BinarySearchTree = require('binary-search-tree').AVLTree , model = require('./model') , _ = require('underscore') , util = require('util') ; /** * Two indexed pointers are equal iif they point to the same place */ function checkValueEquality (a, b) { return a === b; } /** * Type-aware p...
/content/code_sandbox/node_modules/nedb/lib/indexes.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,871
```javascript /** * Responsible for sequentially executing actions on the database */ var async = require('async') ; function Executor () { this.buffer = []; this.ready = false; // This queue will execute all commands, one-by-one in order this.queue = async.queue(function (task, cb) { var callback ...
/content/code_sandbox/node_modules/nedb/lib/executor.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
493
```javascript var should = require('chai').should() , assert = require('chai').assert , testDb = 'workspace/test.db' , fs = require('fs') , path = require('path') , _ = require('underscore') , async = require('async') , model = require('../lib/model') , Datastore = require('../lib/datastore') , Persis...
/content/code_sandbox/node_modules/nedb/test/db.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
24,942
```javascript var should = require('chai').should() , assert = require('chai').assert , testDb = 'workspace/test.db' , fs = require('fs') , path = require('path') , _ = require('underscore') , async = require('async') , model = require('../lib/model') , customUtils = require('../lib/customUtils') , Da...
/content/code_sandbox/node_modules/nedb/test/persistence.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
8,585
```unknown --reporter spec --timeout 30000 ```
/content/code_sandbox/node_modules/nedb/test/mocha.opts
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
11
```javascript var should = require('chai').should() , assert = require('chai').assert , customUtils = require('../lib/customUtils') , fs = require('fs') ; describe('customUtils', function () { describe('uid', function () { it('Generates a string of the expected length', function () { customUtils...
/content/code_sandbox/node_modules/nedb/test/customUtil.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
172
```javascript var should = require('chai').should() , assert = require('chai').assert , testDb = 'workspace/test.db' , fs = require('fs') , path = require('path') , _ = require('underscore') , async = require('async') , model = require('../lib/model') , Datastore = require('../lib/datastore') , Persis...
/content/code_sandbox/node_modules/nedb/test/cursor.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
6,343
```javascript (function(e){if("function"==typeof bootstrap)bootstrap("nedb",e);else if("object"==typeof exports)module.exports=e();else if("function"==typeof define&&define.amd)define(e);else if("undefined"!=typeof ses){if(!ses.ok())return;ses.makeNedb=e}else"undefined"!=typeof window?window.Nedb=e():global.Nedb=e()})(...
/content/code_sandbox/node_modules/nedb/browser-version/out/nedb.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
66,231
```javascript var should = require('chai').should() , assert = require('chai').assert , testDb = 'workspace/test.db' , fs = require('fs') , path = require('path') , _ = require('underscore') , async = require('async') , model = require('../lib/model') , Datastore = require('../lib/datastore') , Persis...
/content/code_sandbox/node_modules/nedb/test/executor.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,107
```javascript var Index = require('../lib/indexes') , customUtils = require('../lib/customUtils') , should = require('chai').should() , assert = require('chai').assert , _ = require('underscore') , async = require('async') , model = require('../lib/model') ; describe('Indexes', function () { describe(...
/content/code_sandbox/node_modules/nedb/test/indexes.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
7,760
```javascript /** * Load and modify part of fs to ensure writeFile will crash after writing 5000 bytes */ var fs = require('fs'); function rethrow() { // Only enable in debug mode. A backtrace uses ~1000 bytes of heap space and // is fairly slow to generate. if (DEBUG) { var backtrace = new Error(); re...
/content/code_sandbox/node_modules/nedb/test_lac/loadAndCrash.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
865
```unknown Random stuff ```
/content/code_sandbox/node_modules/nedb/test_lac/openFdsTestFile
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
4
```javascript var fs = require('fs') , child_process = require('child_process') , async = require('async') , Nedb = require('../lib/datastore') , db = new Nedb({ filename: './workspace/openfds.db', autoload: true }) , N = 64 // Half the allowed file descriptors , i, fds ; function multipleOpen (filenam...
/content/code_sandbox/node_modules/nedb/test_lac/openFds.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
521
```unknown Some other random stuff ```
/content/code_sandbox/node_modules/nedb/test_lac/openFdsTestFile2
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
6
```shell ulimit -n 128 node ./test_lac/openFds.test.js ```
/content/code_sandbox/node_modules/nedb/test_lac/openFdsLaunch.sh
shell
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
19
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/insert.bench.db' , async = require('async') , commonUtilities = require('./commonUtilities') , execTime = require('exec-time') , profiler = new execTime('INSERT BENCH') , d = new Datastore(benchDb) , program = require('comman...
/content/code_sandbox/node_modules/nedb/benchmarks/ensureIndex.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
385
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/loaddb.bench.db' , fs = require('fs') , path = require('path') , async = require('async') , commonUtilities = require('./commonUtilities') , execTime = require('exec-time') , profiler = new execTime('LOADDB BENCH') , d = ne...
/content/code_sandbox/node_modules/nedb/benchmarks/loadDatabase.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
307
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/update.bench.db' , fs = require('fs') , path = require('path') , async = require('async') , execTime = require('exec-time') , profiler = new execTime('UPDATE BENCH') , commonUtilities = require('./commonUtilities') , config...
/content/code_sandbox/node_modules/nedb/benchmarks/update.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
364
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/find.bench.db' , fs = require('fs') , path = require('path') , async = require('async') , execTime = require('exec-time') , profiler = new execTime('FIND BENCH') , commonUtilities = require('./commonUtilities') , config = c...
/content/code_sandbox/node_modules/nedb/benchmarks/findWithIn.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
255
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/insert.bench.db' , async = require('async') , execTime = require('exec-time') , profiler = new execTime('INSERT BENCH') , commonUtilities = require('./commonUtilities') , config = commonUtilities.getConfiguration(benchDb) , d...
/content/code_sandbox/node_modules/nedb/benchmarks/insert.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
280
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/remove.bench.db' , fs = require('fs') , path = require('path') , async = require('async') , execTime = require('exec-time') , profiler = new execTime('REMOVE BENCH') , commonUtilities = require('./commonUtilities') , config...
/content/code_sandbox/node_modules/nedb/benchmarks/remove.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
362
```javascript /** * Functions that are used in several benchmark tests */ var customUtils = require('../lib/customUtils') , fs = require('fs') , path = require('path') , Datastore = require('../lib/datastore') , Persistence = require('../lib/persistence') , executeAsap // process.nextTick or setImmediate...
/content/code_sandbox/node_modules/nedb/benchmarks/commonUtilities.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,194
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/find.bench.db' , fs = require('fs') , path = require('path') , async = require('async') , execTime = require('exec-time') , profiler = new execTime('FIND BENCH') , commonUtilities = require('./commonUtilities') , config = c...
/content/code_sandbox/node_modules/nedb/benchmarks/find.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
253
```javascript var Datastore = require('../lib/datastore') , benchDb = 'workspace/findOne.bench.db' , fs = require('fs') , path = require('path') , async = require('async') , execTime = require('exec-time') , profiler = new execTime('FINDONE BENCH') , commonUtilities = require('./commonUtilities') , conf...
/content/code_sandbox/node_modules/nedb/benchmarks/findOne.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
272
```unknown # -*- mode: makefile -*- # # # Makefile.targ: common targets. # # NOTE: This makefile comes from the "eng" repo. It's designed to be dropped # into other repos as-is without requiring any modifications. If you find # yourself changing this file, you should instead update the original copy in # eng.git and th...
/content/code_sandbox/node_modules/extsprintf/Makefile.targ
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,359
```unknown /deps /examples ```
/content/code_sandbox/node_modules/extsprintf/.npmignore
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
6
```unknown # # # Makefile: top-level Makefile # # This Makefile contains only repo-specific logic and uses included makefiles # to supply common targets (javascriptlint, jsstyle, restdown, etc.), which are # used by other repos as well. # # # Files # JSL = jsl JSSTYLE = jsstyle JS_FILES := $(shell find examples li...
/content/code_sandbox/node_modules/extsprintf/Makefile
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
137
```unknown # # Configuration File for JavaScript Lint # # This configuration file can be used to lint a collection of scripts, or to enable # or disable warnings for scripts that are linted via the command line. # ### Warnings # Enable or disable warnings based on requirements. # Use "+WarningName" to display or "-Wa...
/content/code_sandbox/node_modules/extsprintf/jsl.node.conf
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,482
```javascript /* * extsprintf.js: extended POSIX-style sprintf */ var mod_assert = require('assert'); var mod_util = require('util'); /* * Public interface */ exports.sprintf = jsSprintf; exports.printf = jsPrintf; exports.fprintf = jsFprintf; /* * Stripped down version of s[n]printf(3c). We make a best effort...
/content/code_sandbox/node_modules/extsprintf/lib/extsprintf.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,163
```javascript module.exports = require('./lib/_stream_duplex.js'); ```
/content/code_sandbox/node_modules/readable-stream/duplex-browser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
13
```javascript exports = module.exports = require('./lib/_stream_readable.js'); exports.Stream = exports; exports.Readable = exports; exports.Writable = require('./lib/_stream_writable.js'); exports.Duplex = require('./lib/_stream_duplex.js'); exports.Transform = require('./lib/_stream_transform.js'); exports.PassThroug...
/content/code_sandbox/node_modules/readable-stream/readable-browser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
76
```javascript module.exports = require('./readable').Transform ```
/content/code_sandbox/node_modules/readable-stream/transform.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
11
```javascript module.exports = require('./readable').Duplex ```
/content/code_sandbox/node_modules/readable-stream/duplex.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
12
```javascript var Stream = require("stream") var Writable = require("./lib/_stream_writable.js") if (process.env.READABLE_STREAM === 'disable') { module.exports = Stream && Stream.Writable || Writable } else { module.exports = Writable } ```
/content/code_sandbox/node_modules/readable-stream/writable.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
57
```javascript module.exports = require('./readable').PassThrough ```
/content/code_sandbox/node_modules/readable-stream/passthrough.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
12
```javascript module.exports = require('./lib/_stream_writable.js'); ```
/content/code_sandbox/node_modules/readable-stream/writable-browser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
13
```javascript var Stream = require('stream'); if (process.env.READABLE_STREAM === 'disable' && Stream) { module.exports = Stream; exports = module.exports = Stream.Readable; exports.Readable = Stream.Readable; exports.Writable = Stream.Writable; exports.Duplex = Stream.Duplex; exports.Transform = Stream.Tra...
/content/code_sandbox/node_modules/readable-stream/readable.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
178
```javascript // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublic...
/content/code_sandbox/node_modules/readable-stream/lib/_stream_passthrough.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
352
```javascript var model = require('../lib/model') , should = require('chai').should() , assert = require('chai').assert , expect = require('chai').expect , _ = require('underscore') , async = require('async') , util = require('util') , Datastore = require('../lib/datastore') , fs = require('fs') ; d...
/content/code_sandbox/node_modules/nedb/test/model.test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
16,388
```javascript // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublic...
/content/code_sandbox/node_modules/readable-stream/lib/_stream_transform.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,830
```javascript // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublic...
/content/code_sandbox/node_modules/readable-stream/lib/_stream_duplex.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
938
```javascript // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublic...
/content/code_sandbox/node_modules/readable-stream/lib/_stream_writable.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
5,083
```javascript 'use strict'; /*<replacement>*/ var pna = require('process-nextick-args'); /*</replacement>*/ // undocumented cb() API, needed for core, not for public API function destroy(err, cb) { var _this = this; var readableDestroyed = this._readableState && this._readableState.destroyed; var writableDest...
/content/code_sandbox/node_modules/readable-stream/lib/internal/streams/destroy.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
504
```javascript module.exports = require('events').EventEmitter; ```
/content/code_sandbox/node_modules/readable-stream/lib/internal/streams/stream-browser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
11
```javascript 'use strict'; function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } } var Buffer = require('safe-buffer').Buffer; var util = require('util'); function copyBuffer(src, target, offset) { src.copy(target, o...
/content/code_sandbox/node_modules/readable-stream/lib/internal/streams/BufferList.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
536
```javascript module.exports = require('stream'); ```
/content/code_sandbox/node_modules/readable-stream/lib/internal/streams/stream.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
8
```javascript // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublic...
/content/code_sandbox/node_modules/readable-stream/node_modules/string_decoder/lib/string_decoder.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,657
```javascript "use strict"; var parser = require("./generated-parser.js"); exports.name = function (potentialName) { return mapResult(parser.startWith("Name").exec(potentialName)); }; exports.qname = function (potentialQname) { return mapResult(parser.startWith("QName").exec(potentialQname)); }; function map...
/content/code_sandbox/node_modules/xml-name-validator/lib/xml-name-validator.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
100
```javascript module.exports = (function(){function _waka(parser, startRule) { if(startRule && ! parser.rules[startRule]) throw new Error('start rule missing: ' + JSON.stringify(startRule)) return { getState: function() { return parser.state }, getTrace: function(message) { return (mes...
/content/code_sandbox/node_modules/xml-name-validator/lib/generated-parser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
3,384
```unknown // path_to_url#NT-Name NameStartChar = ":" / [A-Z] / "_" / [a-z] / [\u00C0-\u00D6] / [\u00D8-\u00F6] / [\u00F8-\u02FF] / [\u0370-\u037D] / [\u037F-\u1FFF] / [\u200C-\u200D] / [\u2070-\u218F] / [\u2C00-\u2FEF] / [\u3001-\uD7FF] / [\uF900-\uFDCF] / [\uFDF0-\uFFFD] / [\uD800-\uD...
/content/code_sandbox/node_modules/xml-name-validator/lib/grammar.pegjs
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
552
```javascript // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublic...
/content/code_sandbox/node_modules/readable-stream/lib/_stream_readable.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
8,096
```xml import {Node} from 'acorn'; declare module "acorn-walk" { type FullWalkerCallback<TState> = ( node: Node, state: TState, type: string ) => void; type FullAncestorWalkerCallback<TState> = ( node: Node, state: TState | Node[], ancestors: Node[], type: string ) => void; type ...
/content/code_sandbox/node_modules/acorn-walk/dist/walk.d.ts
xml
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
693
```unknown // AST walker module for Mozilla Parser API compatible trees // A simple walk is one where you simply specify callbacks to be // called on specific nodes. The last two arguments are optional. A // simple use would be // // walk.simple(myTree, { // Expression: function(node) { ... } // }); //...
/content/code_sandbox/node_modules/acorn-walk/dist/walk.mjs
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
4,077
```javascript var ElementType = require("domelementtype"); var re_whitespace = /\s+/g; var NodePrototype = require("./lib/node"); var ElementPrototype = require("./lib/element"); function DomHandler(callback, options, elementCB){ if(typeof callback === "object"){ elementCB = options; options = callback; callba...
/content/code_sandbox/node_modules/domhandler/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,087
```javascript // This object will be used as the prototype for Nodes when creating a // DOM-Level-1-compliant structure. var NodePrototype = module.exports = { get firstChild() { var children = this.children; return children && children[0] || null; }, get lastChild() { var children = this.children; return ch...
/content/code_sandbox/node_modules/domhandler/lib/node.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
253
```javascript // DOM-Level-1-compliant structure var NodePrototype = require('./node'); var ElementPrototype = module.exports = Object.create(NodePrototype); var domLvl1 = { tagName: "name" }; Object.keys(domLvl1).forEach(function(key) { var shorthand = domLvl1[key]; Object.defineProperty(ElementPrototype, key, { ...
/content/code_sandbox/node_modules/domhandler/lib/element.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
118
```javascript var fs = require("fs"), path = require("path"), assert = require("assert"), util = require("util"), Parser = require("htmlparser2").Parser, Handler = require("../"); var basePath = path.resolve(__dirname, "cases"), inspectOpts = { showHidden: true, depth: null }; fs .readdirSync(...
/content/code_sandbox/node_modules/domhandler/test/tests.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
376
```javascript 'use strict'; exports.Parser = require('./lib/tree_construction/parser'); exports.SimpleApiParser = require('./lib/simple_api/simple_api_parser'); exports.TreeSerializer = exports.Serializer = require('./lib/serialization/serializer'); exports.JsDomParser = require('./lib/jsdom/jsdom_parser'); exports.T...
/content/code_sandbox/node_modules/parse5/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
92
```javascript (function (global, factory) { typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : (global = global || self, factory((global.acorn = global.acorn || {}, global.acorn.walk = {}))); }(this, (functi...
/content/code_sandbox/node_modules/acorn-walk/dist/walk.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
4,382
```javascript 'use strict'; exports.REPLACEMENT_CHARACTER = '\uFFFD'; exports.CODE_POINTS = { EOF: -1, NULL: 0x00, TABULATION: 0x09, CARRIAGE_RETURN: 0x0D, LINE_FEED: 0x0A, FORM_FEED: 0x0C, SPACE: 0x20, EXCLAMATION_MARK: 0x21, QUOTATION_MARK: 0x22, NUMBER_SIGN: 0x23, AMPERS...
/content/code_sandbox/node_modules/parse5/lib/common/unicode.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
614
```javascript 'use strict'; exports.mergeOptions = function (defaults, options) { options = options || {}; return [defaults, options].reduce(function (merged, optObj) { Object.keys(optObj).forEach(function (key) { merged[key] = optObj[key]; }); return merged; }, {}); }...
/content/code_sandbox/node_modules/parse5/lib/common/utils.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
68
```javascript 'use strict'; var DefaultTreeAdapter = require('../tree_adapters/default'), Doctype = require('../common/doctype'), Utils = require('../common/utils'), HTML = require('../common/html'); //Aliases var $ = HTML.TAG_NAMES, NS = HTML.NAMESPACES; //Default serializer options var DEFAULT_OPTI...
/content/code_sandbox/node_modules/parse5/lib/serialization/serializer.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,256
```javascript 'use strict'; var NS = exports.NAMESPACES = { HTML: 'path_to_url MATHML: 'path_to_url SVG: 'path_to_url XLINK: 'path_to_url XML: 'path_to_url XMLNS: 'path_to_url }; exports.ATTRS = { TYPE: 'type', ACTION: 'action', ENCODING: 'encoding', PROMPT: 'prompt', NAME:...
/content/code_sandbox/node_modules/parse5/lib/common/html.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,267
```javascript 'use strict'; var Tokenizer = require('../tokenization/tokenizer'), HTML = require('./html'); //Aliases var $ = HTML.TAG_NAMES, NS = HTML.NAMESPACES, ATTRS = HTML.ATTRS; //MIME types var MIME_TYPES = { TEXT_HTML: 'text/html', APPLICATION_XML: 'application/xhtml+xml' }; //Attribute...
/content/code_sandbox/node_modules/parse5/lib/common/foreign_content.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,560
```javascript 'use strict'; //Const var VALID_DOCTYPE_NAME = 'html', QUIRKS_MODE_SYSTEM_ID = 'path_to_url QUIRKS_MODE_PUBLIC_ID_PREFIXES = [ "+//silmaril//dtd html pro v0r11 19970101//en", "-//advasoft ltd//dtd html 3.0 aswedit + extensions//en", "-//as//dtd html 3.0 aswedit + extension...
/content/code_sandbox/node_modules/parse5/lib/common/doctype.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,517
```javascript 'use strict'; var HTML = require('../common/html'); //Aliases var $ = HTML.TAG_NAMES, NS = HTML.NAMESPACES; //Element utils //OPTIMIZATION: Integer comparisons are low-cost, so we can use very fast tag name length filters here. //It's faster than using dictionary. function isImpliedEndTagRequired(...
/content/code_sandbox/node_modules/parse5/lib/tree_construction/open_element_stack.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,456
```javascript 'use strict'; //Const var NOAH_ARK_CAPACITY = 3; //List of formatting elements var FormattingElementList = module.exports = function (treeAdapter) { this.length = 0; this.entries = []; this.treeAdapter = treeAdapter; this.bookmark = null; }; //Entry types FormattingElementList.MARKER_EN...
/content/code_sandbox/node_modules/parse5/lib/tree_construction/formatting_element_list.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,107
```javascript 'use strict'; var OpenElementStack = require('./open_element_stack'), Tokenizer = require('../tokenization/tokenizer'), HTML = require('../common/html'); //Aliases var $ = HTML.TAG_NAMES; function setEndLocation(element, closingToken, treeAdapter) { var loc = element.__location; if (...
/content/code_sandbox/node_modules/parse5/lib/tree_construction/location_info_mixin.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,432
```javascript 'use strict'; var Tokenizer = require('../tokenization/tokenizer'), OpenElementStack = require('./open_element_stack'), FormattingElementList = require('./formatting_element_list'), LocationInfoMixin = require('./location_info_mixin'), DefaultTreeAdapter = require('../tree_adapters/defaul...
/content/code_sandbox/node_modules/parse5/lib/tree_construction/parser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
21,087
```javascript 'use strict'; //NOTE: this file contains auto generated trie structure that is used for named entity references consumption //(see: path_to_url#tokenizing-character-references and //path_to_url#named-character-references) module.exports = {65:{l:{69:{l:{108:{l:{105:{l:{103:{l:{59:{c:[198]}},c:[198]}}}}}}...
/content/code_sandbox/node_modules/parse5/lib/tokenization/named_entity_trie.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
55,644
```javascript 'use strict'; var Preprocessor = require('./preprocessor'), LocationInfoMixin = require('./location_info_mixin'), UNICODE = require('../common/unicode'), NAMED_ENTITY_TRIE = require('./named_entity_trie'); //Aliases var $ = UNICODE.CODE_POINTS, $$ = UNICODE.CODE_POINT_SEQUENCES; //Repla...
/content/code_sandbox/node_modules/parse5/lib/tokenization/tokenizer.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
16,570
```javascript 'use strict'; exports.assign = function (tokenizer) { //NOTE: obtain Tokenizer proto this way to avoid module circular references var tokenizerProto = Object.getPrototypeOf(tokenizer); tokenizer.tokenStartLoc = -1; //NOTE: add location info builder method tokenizer._attachLocationIn...
/content/code_sandbox/node_modules/parse5/lib/tokenization/location_info_mixin.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
635
```javascript 'use strict'; var UNICODE = require('../common/unicode'); //Aliases var $ = UNICODE.CODE_POINTS; //Utils //OPTIMIZATION: these utility functions should not be moved out of this module. V8 Crankshaft will not inline //this functions if they will be situated in another module due to context switch. //Al...
/content/code_sandbox/node_modules/parse5/lib/tokenization/preprocessor.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
884
```javascript 'use strict'; //Node construction exports.createDocument = function () { return { nodeName: '#document', quirksMode: false, childNodes: [] }; }; exports.createDocumentFragment = function () { return { nodeName: '#document-fragment', quirksMode: false, ...
/content/code_sandbox/node_modules/parse5/lib/tree_adapters/default.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,025
```javascript 'use strict'; var ParsingUnit = module.exports = function (parser) { this.parser = parser; this.suspended = false; this.parsingLoopLock = false; this.callback = null; }; ParsingUnit.prototype._stateGuard = function (suspend) { if (this.suspended && suspend) throw new Error('p...
/content/code_sandbox/node_modules/parse5/lib/jsdom/parsing_unit.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
311
```javascript 'use strict'; var Parser = require('../tree_construction/parser'), ParsingUnit = require('./parsing_unit'); //API exports.parseDocument = function (html, treeAdapter) { //NOTE: this should be reentrant, so we create new parser here var parser = new Parser(treeAdapter), parsingUnit = ...
/content/code_sandbox/node_modules/parse5/lib/jsdom/jsdom_parser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
247
```javascript 'use strict'; var Doctype = require('../common/doctype'); //Conversion tables for DOM Level1 structure emulation var nodeTypes = { element: 1, text: 3, cdata: 4, comment: 8 }; var nodePropertyShorthands = { tagName: 'name', childNodes: 'children', parentNode: 'parent', p...
/content/code_sandbox/node_modules/parse5/lib/tree_adapters/htmlparser2.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,745
```javascript 'use strict'; var Tokenizer = require('../tokenization/tokenizer'), TokenizerProxy = require('./tokenizer_proxy'), Utils = require('../common/utils'); //Default options var DEFAULT_OPTIONS = { decodeHtmlEntities: true, locationInfo: false }; //Skipping handler function skip() { //NO...
/content/code_sandbox/node_modules/parse5/lib/simple_api/simple_api_parser.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
631
```javascript 'use strict'; var Tokenizer = require('../tokenization/tokenizer'), ForeignContent = require('../common/foreign_content'), UNICODE = require('../common/unicode'), HTML = require('../common/html'); //Aliases var $ = HTML.TAG_NAMES, NS = HTML.NAMESPACES; //Tokenizer proxy //NOTE: this pr...
/content/code_sandbox/node_modules/parse5/lib/simple_api/tokenizer_proxy.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
846
```unknown .DS_Store node_modules ```
/content/code_sandbox/node_modules/jschardet/.npmignore
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
8
```javascript module.exports = require('./src') ```
/content/code_sandbox/node_modules/jschardet/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
8
```unknown Antnio Afonso <aadsm> - author Markus Ast <brainafk> - transformed into an npm package, multiple bug fixes Leon <idealhack> - multiple bug fixes ```
/content/code_sandbox/node_modules/jschardet/CONTRIBUTORS
unknown
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
40
```html <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "path_to_url"> <html> <head> <link rel="stylesheet" href="qunit/qunit.css" type="text/css" media="screen" /> <script type="text/javascript" src="qunit/qunit.js"></script> <!-- JSChardet --> <script src="../dist/js...
/content/code_sandbox/node_modules/jschardet/tests/index.html
html
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
184
```css ol#qunit-tests { font-family:"Helvetica Neue Light", "HelveticaNeue-Light", "Helvetica Neue", Calibri, Helvetica, Arial; margin:0; padding:0; list-style-position:inside; font-size: smaller; } ol#qunit-tests li{ padding:0.4em 0.5em 0.4em 2.5em; border-bottom:1px solid #fff; font-size:small; list-style-...
/content/code_sandbox/node_modules/jschardet/tests/qunit/qunit.css
css
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
973
```javascript /* Big5, GB2312/GB18030, EUC-TW, HZ-GB-2312, and ISO-2022-CN (Traditional and Simplified Chinese) EUC-JP, SHIFT_JIS, and ISO-2022-JP (Japanese) EUC-KR and ISO-2022-KR (Korean) KOI8-R, MacCyrillic, IBM855, IBM866, ISO-8859-5, and windows-1251 (Russian) ISO-8859-2 and windows-1250 (Hungarian) ISO-8859...
/content/code_sandbox/node_modules/jschardet/tests/jschardet.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
14,951
```javascript /* * QUnit - A JavaScript Unit Testing Framework * * path_to_url * * Dual licensed under the MIT (MIT-LICENSE.txt) * and GPL (GPL-LICENSE.txt) licenses. */ (function(window) { var QUnit = { // Initialize the configuration options init: function() { config = { stats: { all: 0, bad: 0 }, ...
/content/code_sandbox/node_modules/jschardet/tests/qunit/qunit.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
7,154
```javascript /* * The Original Code is Mozilla Universal charset detector code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * the Initial Developer. All Rights Reserved. * * Contributor(s): * Antnio Afonso (antonio.afonso gmail.com) - port to JavaScript * Mark ...
/content/code_sandbox/node_modules/jschardet/src/universaldetector.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,975
```javascript /* * The Original Code is Mozilla Universal charset detector code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * the Initial Developer. All Rights Reserved. * * Contributor(s): * Antnio Afonso (antonio.afonso gmail.com) - port to JavaScript * Mark ...
/content/code_sandbox/node_modules/jschardet/src/escsm.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
5,153
```javascript /* * The Original Code is Mozilla Universal charset detector code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * the Initial Developer. All Rights Reserved. * * Contributor(s): * Antnio Afonso (antonio.afonso gmail.com) - port to JavaScript * Mark ...
/content/code_sandbox/node_modules/jschardet/src/sbcharsetprober.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,273
```javascript /* * The Original Code is Mozilla Universal charset detector code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * the Initial Developer. All Rights Reserved. * * Contributor(s): * Antnio Afonso (antonio.afonso gmail.com) - port to JavaScript * Mark ...
/content/code_sandbox/node_modules/jschardet/src/euckrprober.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
343
```javascript /* * The Original Code is Mozilla Universal charset detector code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * the Initial Developer. All Rights Reserved. * * Contributor(s): * Antnio Afonso (antonio.afonso gmail.com) - port to JavaScript * Mark ...
/content/code_sandbox/node_modules/jschardet/src/langhungarianmodel.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
10,001
```javascript /* * The Original Code is Mozilla Universal charset detector code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * the Initial Developer. All Rights Reserved. * * Contributor(s): * Antnio Afonso (antonio.afonso gmail.com) - port to JavaScript * Mark ...
/content/code_sandbox/node_modules/jschardet/src/jisfreq.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
27,931
```javascript /* * The Original Code is Mozilla Universal charset detector code. * * The Initial Developer of the Original Code is * Netscape Communications Corporation. * the Initial Developer. All Rights Reserved. * * Contributor(s): * Antnio Afonso (antonio.afonso gmail.com) - port to JavaScript * Mark ...
/content/code_sandbox/node_modules/jschardet/src/mbcharsetprober.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
800