This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Basic usage | |
mongo2sql({ 'a': 'b', 'c': 'd' }); | |
"[a] = 'b' AND [c] = 'd'" | |
mongo2sql({ 'a': { $gt: 123 }, 'c': 'd' }); | |
"[a] > 123 AND [c] = 'd'" | |
mongo2sql({ $or: [{ 'a': 'b'}, { 'c': 'd' }] }); | |
"( ( [a] = 'b' ) OR ( [c] = 'd' ) )" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function(doc) { | |
var head = doc.documentElement, | |
isHeadReady, | |
isDomReady, | |
domWaiters = [], | |
queue = [], // waiters for the "head ready" event | |
handlers = {}, // user functions waiting for events | |
scripts = {}, // loadable scripts in different states | |
isAsync = doc.createElement("script").async === true || "MozAppearance" in doc.documentElement.style || window.opera; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* WysiHat - WYSIWYG JavaScript framework, version 0.2.1 | |
* (c) 2008-2010 Joshua Peek | |
* | |
* WysiHat is freely distributable under the terms of an MIT-style license. | |
*--------------------------------------------------------------------------*/ | |
(function (window) { | |
var WysiHat = {}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* Prototype JavaScript framework, version 1.6.1 | |
* (c) 2005-2009 Sam Stephenson | |
* | |
* Prototype is freely distributable under the terms of an MIT-style license. | |
* For details, see the Prototype web site: http://www.prototypejs.org/ | |
* | |
*--------------------------------------------------------------------------*/ | |
window.Prototype = { | |
Version: '1.6.1', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.Base64 = { | |
'_keyStr': "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=", | |
'encode': function (input) { | |
var output = ''; | |
var chr1, chr2, chr3, enc1, enc2, enc3, enc4; | |
var i = 0; | |
input = this._utf8_encode(input); | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var rsplit = function (string, regex) { | |
var result = regex.exec(string), | |
retArr = [], | |
first_idx, | |
last_idx, | |
first_bit; | |
while (result !== null) { | |
first_idx = result.index; | |
last_idx = regex.lastIndex; | |
if (first_idx !== 0) { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
exports.parse = function (string, format) { | |
var match = string.match(/^(\+|-)\s*(\d+)\s*([a-z]{3})/i); | |
var add; | |
if (!match) { | |
add = 0; | |
} else { | |
add = parseInt(match[2], 10); | |
switch (match[3]) { | |
case 'min': | |
add *= 60; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
goog.provide('uuid'); | |
var uuid = function () { | |
var parts = new Array(4); | |
// a - unix timestamp | |
var time = Math.round(new Date().getTime() / 1000); | |
parts[0] = time.toString(16).substring(0, 8); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Shortcut Library | |
* -- | |
* @version 2.01.B | |
* @author Binny V A | |
* @modifier Jan Kuča <[email protected]> | |
* @license BSD | |
*/ | |
(function (window) { | |
var document = window.document; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var A = Function.inherit(function () { | |
console.log('construct A'); | |
}, { | |
'aa': function () { | |
console.log('aa A'); | |
}, | |
}); | |
var B = A.inherit(function () { | |
console.log('construct B'); |
OlderNewer