Skip to content

Instantly share code, notes, and snippets.

@ollelauribostrom
Created July 30, 2018 20:44
Show Gist options
  • Save ollelauribostrom/46e733047a41665f0b9f60babc940395 to your computer and use it in GitHub Desktop.
Save ollelauribostrom/46e733047a41665f0b9f60babc940395 to your computer and use it in GitHub Desktop.
function inRange({ number, low, high }) {
return number >= low && number <= high;
}
export default inRange;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment