text
stringlengths
9
39.2M
dir
stringlengths
26
295
lang
stringclasses
185 values
created_date
timestamp[us]
updated_date
timestamp[us]
repo_name
stringlengths
1
97
repo_full_name
stringlengths
7
106
star
int64
1k
183k
len_tokens
int64
1
13.8M
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /*jslint node:true*/ /** * Desugars ES6 rest parameters into ES3 arguments slicing. * * function printf(template, ...args)...
/content/code_sandbox/node_modules/jstransform/visitors/es6-rest-param-visitors.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
481
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /*jslint node:true*/ /** * @typechecks */ 'use strict'; var base62 = require('base62'); var Syntax = require('esprima-fb')...
/content/code_sandbox/node_modules/jstransform/visitors/es6-class-visitors.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
3,256
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /** * @emails dmitrys@fb.com javascript@lists.facebook.com */ /*jshint evil:true*/ require('mock-modules').autoMockOff(); ...
/content/code_sandbox/node_modules/jstransform/visitors/__tests__/es6-arrow-function-visitors-test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,216
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /** * @emails dmitrys@fb.com javascript@lists.facebook.com */ /*jshint evil:true*/ require('mock-modules').autoMockOff(); ...
/content/code_sandbox/node_modules/jstransform/visitors/__tests__/es6-object-short-notation-visitors-test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
642
```javascript /** * @emails mroch@fb.com javascript@lists.facebook.com */ /*jshint evil:true*/ require('mock-modules').autoMockOff(); describe('ES6 Template Visitor', function() { var transformFn; var visitors; beforeEach(function() { require('mock-modules').dumpCache(); visitors = require('../es6-t...
/content/code_sandbox/node_modules/jstransform/visitors/__tests__/es6-template-visitors-test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,825
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /** * @emails dmitrys@fb.com javascript@lists.facebook.com */ /*jshint evil:true*/ require('mock-modules').autoMockOff(); ...
/content/code_sandbox/node_modules/jstransform/visitors/__tests__/es6-rest-param-visitors-test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,317
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /*jslint node: true*/ "use strict"; /** * Syntax transfomer for javascript. Takes the source in, spits the source * out. ...
/content/code_sandbox/node_modules/jstransform/src/jstransform.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,509
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ var docblockRe = /^\s*(\/\*\*(.|\r?\n)*?\*\/)/; var ltrimRe = /^\s*/; /** * @param {String} contents * @return {String} */ ...
/content/code_sandbox/node_modules/jstransform/src/docblock.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
535
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * @emails jeffmo@fb.com javascript@lists.facebook.com */ /*jshint evil:true*/ require('mock-modules').autoMockOff(); descri...
/content/code_sandbox/node_modules/jstransform/visitors/__tests__/es6-class-visitors-test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
7,689
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. */ /*jslint node: true*/ /** * A `state` object represents the state of the parser. It has "local" and * "global" parts. Glob...
/content/code_sandbox/node_modules/jstransform/src/utils.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
3,050
```javascript 'use strict'; var acorn = require('acorn'); var walk = require('acorn/dist/walk'); function isScope(node) { return node.type === 'FunctionExpression' || node.type === 'FunctionDeclaration' || node.type === 'ArrowFunctionExpression' || node.type === 'Program'; } function isBlockScope(node) { return n...
/content/code_sandbox/node_modules/acorn-globals/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,289
```javascript /** * * * path_to_url * * Unless required by applicable law or agreed to in writing, software * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * * @emails jeffmo@fb.com javascript@lists.facebook.com */ require('mock-modules').autoMockOff(); describe('jstransform', func...
/content/code_sandbox/node_modules/jstransform/src/__tests__/jstransform-test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,966
```javascript const Benchmark = require('benchmark') const suite = new Benchmark.Suite() const { inspect } = require('util') const jsonStringifySafe = require('json-stringify-safe') const fastSafeStringify = require('./') const array = new Array(10).fill(0).map((_, i) => i) const obj = { foo: array } const circ = JSON...
/content/code_sandbox/node_modules/fast-safe-stringify/benchmark.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,183
```javascript module.exports = stringify stringify.default = stringify stringify.stable = deterministicStringify stringify.stableStringify = deterministicStringify var LIMIT_REPLACE_NODE = '[...]' var CIRCULAR_REPLACE_NODE = '[Circular]' var arr = [] var replacerStack = [] function defaultOptions () { return { ...
/content/code_sandbox/node_modules/fast-safe-stringify/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,553
```javascript const test = require('tap').test const fss = require('./').stable const clone = require('clone') const s = JSON.stringify const stream = require('stream') test('circular reference to root', function (assert) { const fixture = { name: 'Tywin Lannister' } fixture.circle = fixture const expected = s({...
/content/code_sandbox/node_modules/fast-safe-stringify/test-stable.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,652
```javascript const test = require('tap').test const fss = require('./') const clone = require('clone') const s = JSON.stringify const stream = require('stream') test('circular reference to root', function (assert) { const fixture = { name: 'Tywin Lannister' } fixture.circle = fixture const expected = s({ name: ...
/content/code_sandbox/node_modules/fast-safe-stringify/test.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,608
```javascript 'use strict' exports.fromCallback = function (fn) { return Object.defineProperty(function () { if (typeof arguments[arguments.length - 1] === 'function') fn.apply(this, arguments) else { return new Promise((resolve, reject) => { arguments[arguments.length] = (err, res) => { ...
/content/code_sandbox/node_modules/universalify/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
186
```javascript /*! * toidentifier */ 'use strict' /** * Module exports. * @public */ module.exports = toIdentifier /** * Trasform the given string into a JavaScript identifier * * @param {string} str * @returns {string} * @public */ function toIdentifier (str) { return str .split(' ') .map(func...
/content/code_sandbox/node_modules/toidentifier/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
123
```javascript 'use strict'; var crypto_hash_sha512 = require('tweetnacl').lowlevel.crypto_hash; /* * This file is a 1:1 port from the OpenBSD blowfish.c and bcrypt_pbkdf.c. As a * result, it retains the original copyright and license. The two files are * under slightly different (but compatible) licenses, and are ...
/content/code_sandbox/node_modules/bcrypt-pbkdf/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
11,907
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/lib-typedarrays.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
500
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./sha1"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./sha1", "./hmac"], factory); } el...
/content/code_sandbox/node_modules/crypto-js/hmac-sha1.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
125
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD def...
/content/code_sandbox/node_modules/crypto-js/aes.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,722
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha512"), require("./sha384"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["...
/content/code_sandbox/node_modules/crypto-js/hmac-sha384.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
145
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/ripemd160.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
3,375
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./x64-core"), require("./lib-typedarrays"), require("./enc-utf16"), require("./enc-base64"), require("./md5"), require("./sha1"), require("./sha256"), requ...
/content/code_sandbox/node_modules/crypto-js/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
463
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD def...
/content/code_sandbox/node_modules/crypto-js/rabbit.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,479
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/mode-ctr-gladman.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
722
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/enc-base64.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,020
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/mode-ctr.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
360
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./ripemd160"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./ripemd160", "./hmac"], factor...
/content/code_sandbox/node_modules/crypto-js/hmac-ripemd160.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
129
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/mode-cfb.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
484
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha3"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./x64-core", ...
/content/code_sandbox/node_modules/crypto-js/hmac-sha3.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
136
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./sha256"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./sha256", "./hmac"], factory); }...
/content/code_sandbox/node_modules/crypto-js/hmac-sha256.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
125
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(); } else if (typeof define === "function" && define.amd) { // AMD define([], factory); } else { // Global (browser) root.CryptoJS = factory(); } }(this, function () { /** *...
/content/code_sandbox/node_modules/crypto-js/core.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
4,747
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha512")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./x64-core", "./sha512"], fact...
/content/code_sandbox/node_modules/crypto-js/sha384.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
676
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/sha1.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,173
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/enc-utf16.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,026
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD def...
/content/code_sandbox/node_modules/crypto-js/rc4.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
953
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./x64-core"), require("./sha512"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./x64-core"...
/content/code_sandbox/node_modules/crypto-js/hmac-sha512.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
136
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./sha1"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./sha1", "./hmac"], factory); } el...
/content/code_sandbox/node_modules/crypto-js/pbkdf2.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,038
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/format-openssl.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
115
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./sha256"), require("./sha224"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./sha256", "....
/content/code_sandbox/node_modules/crypto-js/hmac-sha224.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
134
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/mode-ofb.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
327
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD def...
/content/code_sandbox/node_modules/crypto-js/rabbit-legacy.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,445
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/pad-pkcs7.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
117
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/enc-utf8.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
105
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./sha1"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./sha1", "./hmac"], factory); } el...
/content/code_sandbox/node_modules/crypto-js/evpkdf.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
943
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./enc-base64"), require("./md5"), require("./evpkdf"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD def...
/content/code_sandbox/node_modules/crypto-js/tripledes.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
9,314
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/pad-iso10126.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
292
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/enc-latin1.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
105
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/sha256.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,555
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/format-hex.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
417
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/md5.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
3,325
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/hmac.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
885
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./md5"), require("./hmac")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./md5", "./hmac"], factory); } else...
/content/code_sandbox/node_modules/crypto-js/hmac-md5.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
125
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/pad-zeropadding.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
274
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/pad-nopadding.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
153
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/mode-ecb.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
225
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/pad-ansix923.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
335
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/enc-hex.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
103
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./sha256")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./sha256"], factory); } else { // Global (browser...
/content/code_sandbox/node_modules/crypto-js/sha224.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
537
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./cipher-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./cipher-core"], factory); } else { // Globa...
/content/code_sandbox/node_modules/crypto-js/pad-iso97971.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
254
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core"], factory); } else { // Global (browser) factory(root.CryptoJS); } }(this, f...
/content/code_sandbox/node_modules/crypto-js/x64-core.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,208
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./x64-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./x64-core"], factory); } else { // Global (bro...
/content/code_sandbox/node_modules/crypto-js/sha512.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
4,889
```javascript ;(function (root, factory) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(); } else if (typeof define === "function" && define.amd) { // AMD define([], factory); } else { // Global (browser) root.CryptoJS = factory(); } }(this, function () { /** *...
/content/code_sandbox/node_modules/crypto-js/crypto-js.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
54,821
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./x64-core")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./x64-core"], factory); } else { // Global (bro...
/content/code_sandbox/node_modules/crypto-js/sha3.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
2,769
```mediawiki <wiki:toc/> ---- = Quick-start Guide = == Hashers == === The Hasher Algorithms === ==== MD5 ==== MD5 is a widely used hash function. It's been used in a variety of security applications and is also commonly used to check the integrity of files. Though, MD5 is not collision resistant, and it isn't sui...
/content/code_sandbox/node_modules/crypto-js/docs/QuickStartGuide.wiki
mediawiki
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
3,870
```yaml parser: typescript printWidth: 80 tabWidth: 2 singleQuote: true trailingComma: all arrowParens: always bracketSpacing: false ```
/content/code_sandbox/node_modules/socks/.prettierrc.yaml
yaml
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
42
```javascript ;(function (root, factory, undef) { if (typeof exports === "object") { // CommonJS module.exports = exports = factory(require("./core"), require("./evpkdf")); } else if (typeof define === "function" && define.amd) { // AMD define(["./core", "./evpkdf"], factory); } else { // Global (browser...
/content/code_sandbox/node_modules/crypto-js/cipher-core.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
6,165
```javascript "use strict"; var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { if (k2 === undefined) k2 = k; Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); }) : (function(o, m, k, k2) { if (k2 === undefined) k2 = k; o[...
/content/code_sandbox/node_modules/socks/build/index.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
193
```javascript "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.validateSocksClientChainOptions = exports.validateSocksClientOptions = void 0; const util_1 = require("./util"); const constants_1 = require("./constants"); const stream = require("stream"); /** * Validates the provided ...
/content/code_sandbox/node_modules/socks/build/common/helpers.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,220
```javascript "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ReceiveBuffer = void 0; class ReceiveBuffer { constructor(size = 4096) { this.buffer = Buffer.allocUnsafe(size); this.offset = 0; this.originalSize = size; } get length() { retu...
/content/code_sandbox/node_modules/socks/build/common/receivebuffer.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
325
```javascript "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.shuffleArray = exports.SocksClientError = void 0; /** * Error wrapper for SocksClient */ class SocksClientError extends Error { constructor(message, options) { super(message); this.options = options;...
/content/code_sandbox/node_modules/socks/build/common/util.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
183
```javascript "use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.SOCKS5_NO_ACCEPTABLE_AUTH = exports.SOCKS5_CUSTOM_AUTH_END = exports.SOCKS5_CUSTOM_AUTH_START = exports.SOCKS_INCOMING_PACKET_SIZES = exports.SocksClientState = exports.Socks5Response = exports.Socks5HostType = exports.So...
/content/code_sandbox/node_modules/socks/build/common/constants.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
1,942
```javascript "use strict"; var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } return new (P || (P = Promise))(function (resolve, reject) { function fulfil...
/content/code_sandbox/node_modules/socks/build/client/socksclient.js
javascript
2016-03-11T09:28:00
2024-08-16T17:55:54
antSword
AntSwordProject/antSword
3,579
7,227
```cmake #.rst: # FindSDL2 # ------- # # Locate SDL2 library # # This module defines # # :: # # SDL2_LIBRARY, the name of the library to link against # SDL2_FOUND, if false, do not try to link to SDL # SDL2_INCLUDE_DIR, where to find SDL.h # SDL2_VERSION_STRING, human-readable string containing the version of ...
/content/code_sandbox/cmake/FindSDL2.cmake
cmake
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
1,919
```desktop [Desktop Entry] Name=AntiMicro Comment=Use a gamepad to control a variety of programs Name[sr]=- Comment[sr]= Name[fr]=AntiMicro Comment[fr]=Utilisez une manette de jeu pour commander un logiciel Name[de]=AntiMicro Comment[de]=Nutze ein Gamepad, um Programme/Spiele zu steuern Comment[uk]= Exec=a...
/content/code_sandbox/other/antimicro.desktop
desktop
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
141
```groff .\" Manpage for antimicro. .\" Contact jeff@jsbackus to correct errors or typos. .TH ANTIMICRO "1" "05 November 2016" "antimicro 2.23" "User Commands" .SH NAME antimicro \- map keyboard keys and mouse controls to a gamepad .SH SYNOPSIS .B antimicro [\fIOPTION\fR] [\fIPROFILE\fR] .SH DESCRIPTION .PP antimicro i...
/content/code_sandbox/other/antimicro.1
groff
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
677
```batchfile REM Build script used to compile SDL2. It is mainly a reference for which REM options need to be used in order to compile. REM Move to directory that contains the SDL source directory. REM Just use a static location for now. cd "C:\Users\Travis\Downloads\SDL2-Source" REM Make build directory and change c...
/content/code_sandbox/other/scripts/build-sdl-lib.bat
batchfile
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
174
```objective-c /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABIL...
/content/code_sandbox/src/qtwinkeymapper.h
objective-c
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
215
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/unixwindowinfodialog.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
751
```objective-c /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABIL...
/content/code_sandbox/src/axiseditdialog.h
objective-c
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
421
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/xmlconfigreader.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
925
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/qtuinputkeymapper.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
6,070
```objective-c /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABIL...
/content/code_sandbox/src/joytabwidget.h
objective-c
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
1,316
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/commandlineutility.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
5,173
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/eventhandlerfactory.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
728
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/flashbuttonwidget.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
664
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/joycontrolstick.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
29,143
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/advancebuttondialog.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
12,448
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/common.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
1,086
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/joybuttonmousehelper.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
662
```objective-c /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABIL...
/content/code_sandbox/src/joyaxiswidget.h
objective-c
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
236
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/joybuttonslot.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
4,755
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/simplekeygrabberbutton.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
2,339
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/joystickstatuswindow.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
1,435
```objective-c /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABIL...
/content/code_sandbox/src/joycontrolstickcontextmenu.h
objective-c
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
246
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/qtx11keymapper.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
4,957
```c++ /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or F...
/content/code_sandbox/src/x11extras.cpp
c++
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
5,177
```objective-c /* antimicro Gamepad to KB+M event mapper * * This program is free software: you can redistribute it and/or modify * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABIL...
/content/code_sandbox/src/xmlconfigmigration.h
objective-c
2016-05-24T23:59:31
2024-08-11T02:46:48
antimicro
AntiMicro/antimicro
1,788
219