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 bench (lmbd) { | |
var i = 0, | |
start = new Date().getTime() | |
while (i!=10000) { | |
lmbd() | |
++i | |
} | |
return new Date().getTime() - start | |
} |
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
#what: Template Induction | |
Template Induction | |
(Wrapper Induction) | |
Tim Becker | |
[email protected] | |
http://github.com/a2800276/rtemplatemaker | |
@a2800276 |
NewerOlder