Skip to content

Instantly share code, notes, and snippets.

@kdidenko
Created May 14, 2017 13:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kdidenko/f7376377c0456d9543acb5ee5fc2cf84 to your computer and use it in GitHub Desktop.
Save kdidenko/f7376377c0456d9543acb5ee5fc2cf84 to your computer and use it in GitHub Desktop.
Temp Benchmark class skeleton
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