Skip to content

Instantly share code, notes, and snippets.

@CS1000
Last active August 29, 2015 14:08
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save CS1000/c8b5718573481e762d27 to your computer and use it in GitHub Desktop.
Save CS1000/c8b5718573481e762d27 to your computer and use it in GitHub Desktop.
After fee
Number.prototype.fee=function(fee){return /%$/.test(fee)?this-this*parseInt(fee)/100:this-fee}
/*
// 5 off
parseInt('100').fee(5)
// 15% off
parseInt('100').fee('15%')
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment