Skip to content

Instantly share code, notes, and snippets.

View a2800276's full-sized avatar

Tim Becker a2800276

  • Press Every Key
  • Germany
View GitHub Profile
function bench (lmbd) {
var i = 0,
start = new Date().getTime()
while (i!=10000) {
lmbd()
++i
}
return new Date().getTime() - start
}
#what: Template Induction
Template Induction
(Wrapper Induction)
Tim Becker
[email protected]
http://github.com/a2800276/rtemplatemaker
@a2800276