- Install jsgrep
- Convert your source code using
node spatch-cli.js es5-to-es3.spatch source.js // yields the converted source
- Prepare the implementation of ES5 by implemeting the missing polyfills in es5.js
- Concat es5.js and the converted code
- Wrap the result of the previous steps in a closure and export your object
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 array_permutate(set /*, additionalSets*/ ) { | |
var additionalSets = Array.prototype.slice.call(arguments, 1); | |
if (additionalSets.length === 0) { | |
return set.map(function (item) { return [item]; }); | |
} | |
var permutations = array_permutate.apply(null, additionalSets); | |
var result = []; | |
for (var i = 0; i < set.length; i++) { | |
for (var j = 0; j < permutations.length; j++) { | |
result.push([set[i]].concat(permutations[j])); |
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
/x/==x |
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 input = 'ABbCcc\n\ | |
Good luck in the Facebook Hacker Cup this year!\n\ | |
Ignore punctuation, please :\n)\ | |
Sometimes test cases are hard to make up\n.\ | |
So I just go consult Professor Dalves'; | |
input.split('\n').forEach(function(line) { | |
console.log( | |
line, |
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 mylib = (function() { | |
var api = { | |
provide: function(name, fn) { | |
this[name] = fn; | |
} | |
}; | |
... | |
api.provide('foo', function() { | |
... | |
}); |
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
// Load the SDK Asynchronously | |
(function(d){ | |
var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0]; | |
if (d.getElementById(id)) {return;} | |
js = d.createElement('script'); js.id = id; js.async = true; | |
js.src = | |
('//' + /(www|apps)\.([\w\.]+\.)facebook\.com/.exec(document.referrer) | |
? RegExp.$2 + '.facebook.com/assets.php/en_US/' | |
: 'connect.facebook.net/en_US/') + | |
// the module to load |
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
// Based on Angus Croll's http://javascriptweblog.wordpress.com/2011/08/08/fixing-the-javascript-typeof-operator/ | |
// Also available at http://jsfiddle.net/7xAqT/ | |
Object.toType = (function() { | |
var global = this, | |
toString = Object.prototype.toString; | |
return function(obj) { | |
if (obj === global) { | |
return "Global"; | |
} |
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
// this is the code available in the page | |
var DEBUG_LOG = (function () { | |
var timer = null, timeout = 5000; | |
var head; | |
return { | |
add: function (item) { | |
head = { value: item, next: head }; | |
if (timer) { | |
clearTimeout(timer); |
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
// | |
// by Dmitry Soshnikov <[email protected]> | |
// MIT Style License | |
// see also: http://wiki.ecmascript.org/doku.php?id=strawman:iterators | |
// | |
// --------------------------------------- | |
// 1. Iteration via for-in loop | |
// --------------------------------------- |
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 = 23; | |
switch (true){ | |
case a <= 25: | |
//do foo | |
break; | |
case a <= 30: | |
// do faa | |
break; | |
default: |
NewerOlder