UNPKG

grunt-doctrine

Version:

Grunt plugin to convert doctrine xml annotations into backbone models and collections. Useful in conjunction with doctrine apigility. Includes option to scaffold an entire BBB application

16 lines (13 loc) 447 B
// Runs a function many times without the function call overhead function benchmark(fn, times, name){ fn = fn.toString(); var s = fn.indexOf('{')+1, e = fn.lastIndexOf('}'); fn = fn.substring(s,e); return benchmarkString(fn, times, name); } function benchmarkString(fn, times, name) { var fn = new Function("i", "var t=new Date; while(i--) {" + fn + "}; return new Date - t")(times) fn.displayName = name || "benchmarked"; return fn; }