Skip to content

Commit

Permalink
Merge pull request #33 from ToadnoChikara/master
Browse files Browse the repository at this point in the history
Added PHP random logic
  • Loading branch information
Rabrennie committed Dec 5, 2015
2 parents 6d8f44a + c51648a commit 2ebf320
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions anything.js
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,10 @@
// guaranteed to be random
}

var getTrueRandomNumber = function () {
return getRandomNumber(); // I don't know what you were expecting
}

var everything = function()
{
return 42;
Expand Down Expand Up @@ -168,6 +172,7 @@
anything.prototype.isNumber5 = isNumber5;
anything.prototype.addRealFunctionalityOnTheFly = addRealFunctionalityOnTheFly;
anything.prototype.getRandomNumber = getRandomNumber;
anything.prototype.getTrueRandomNumber = getTrueRandomNumber;
anything.prototype.everything = everything;
anything.prototype.twoString = twoString;
anything.prototype.fizzbuzz = fizzbuzz;
Expand Down

0 comments on commit 2ebf320

Please sign in to comment.