Skip to content

Instantly share code, notes, and snippets.

@libasoles
Last active April 30, 2018 19:46
Show Gist options
  • Save libasoles/a1e8399a13063fcd8a291022983b9765 to your computer and use it in GitHub Desktop.
Save libasoles/a1e8399a13063fcd8a291022983b9765 to your computer and use it in GitHub Desktop.
Esquema basico para consumo api interna cryptomkt
(()=>{
// your logic here
function init() {
console.log(helpers.getBalance())
}
const helpers =
{
getBalance: (currency = 'ARS') => {
return window.balances.find(x=>x.currency_name === currency)
}
}
init();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment