Skip to content

Instantly share code, notes, and snippets.

@SimpleCookie
Created February 7, 2026 20:30
Show Gist options
  • Select an option

  • Save SimpleCookie/6b48bdbec282d44c799fd2bac497ce47 to your computer and use it in GitHub Desktop.

Select an option

Save SimpleCookie/6b48bdbec282d44c799fd2bac497ce47 to your computer and use it in GitHub Desktop.
PoE Ratio converter with multiplier
function ratio(a, b, multiplier) {
return {
buy: a * multiplier,
sell: b * multiplier
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment