Created
November 19, 2011 21:35
-
-
Save Raynos/1379390 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
burrito(file, function (node) { | |
if (node.name === "call" && | |
node.start.value === "load" | |
) { | |
// magic numbers everywhere! | |
var module = node.value[1][0][1]; | |
preLoad(module); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment