Created
May 14, 2017 13:13
-
-
Save kdidenko/f7376377c0456d9543acb5ee5fc2cf84 to your computer and use it in GitHub Desktop.
Temp Benchmark class skeleton
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
var Banchmark = (function(){ | |
'use strict'; | |
const instance = null; | |
let create = function() { | |
let __created = new Date(); | |
let __started; | |
let __stopped; | |
let __tests = []; | |
let __getStack = function() { | |
}; | |
let __start = function() { | |
}; | |
let __stop = funtion() { | |
}; | |
return { | |
start: __start, | |
stop: __stop, | |
} | |
} | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment