Skip to content

Instantly share code, notes, and snippets.

@stackdumper
Created April 9, 2018 06:08
Show Gist options
  • Save stackdumper/cf655505bb10418c5c0b328881f6a65a to your computer and use it in GitHub Desktop.
Save stackdumper/cf655505bb10418c5c0b328881f6a65a to your computer and use it in GitHub Desktop.
const getFreq = (pos, divider, offset) => pos > divider - offset
? pos < divider + offset ? divider - offset : divider + offset - (pos - (divider - offset))
: pos
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment