Skip to content

Instantly share code, notes, and snippets.

@forivall
Created October 3, 2013 17:58
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 forivall/6814143 to your computer and use it in GitHub Desktop.
Save forivall/6814143 to your computer and use it in GitHub Desktop.
signedFloor
var signedFloor = (function() {
var mfloor = Math.floor, mceil = Math.ceil
return function(n) {
return n > 0 ? mfloor(n) : mceil(n);
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment