Skip to content

Instantly share code, notes, and snippets.

@DanielMSchmidt
Created December 7, 2017 21:40
Show Gist options
  • Save DanielMSchmidt/640636572c6084b06256f1c9cebeb089 to your computer and use it in GitHub Desktop.
Save DanielMSchmidt/640636572c6084b06256f1c9cebeb089 to your computer and use it in GitHub Desktop.
const tracer = ... // like defined before
function loadFromLocalStorage() { return new Promise(...) }
tracer.local("load", loadFromLocalStorage()).then(loadedData => {
tracer.local("compute", () => {
runComputationOn(loadedData);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment