Skip to content

Commit

Permalink
remove answers for count -- accidentally committed
Browse files Browse the repository at this point in the history
  • Loading branch information
Jacob M. Roufa committed May 13, 2015
1 parent 52faf47 commit 8be8401
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions app/count.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,6 @@ exports = (typeof window === 'undefined') ? global : window;

exports.countAnswers = {
count : function (start, end) {
var timeout;
function doIt () {
console.log(start++);

if (start <= end) {
timeout = setTimeout(doIt, 100);
}
}

doIt();

return {
cancel : function () {
timeout && clearTimeout(timeout);
}
};
}
};

0 comments on commit 8be8401

Please sign in to comment.