Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
tysonnorris committed May 5, 2018
1 parent 13d88ee commit 2d7d0fe
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions performance/preparation/actions/async.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
function main() {
return new Promise(function (resolve, reject) {
setTimeout(function () {
resolve({done: true});
}, 175);
})
}
3 changes: 3 additions & 0 deletions performance/preparation/actions/noop.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
function main() {
return {};
}

0 comments on commit 2d7d0fe

Please sign in to comment.