Code Monkey home page Code Monkey logo

Comments (4)

xxczaki avatar xxczaki commented on May 31, 2024 1

@victordidenko Thanks for the suggestion, I will try to implement that in the next couple of days 😄

from cash-cli.

xxczaki avatar xxczaki commented on May 31, 2024 1

Done!

from cash-cli.

victordidenko avatar victordidenko commented on May 31, 2024

Thank you! Now I am waiting for homebrew package update :)

from cash-cli.

victordidenko avatar victordidenko commented on May 31, 2024

Just updated brew package and tried this feature.
Honestly, I was thinking about it differently 😅

Something like

let amount = parseFloat(argv[0]);
let from, to;

if (amount) {
  from = argv[1] || config.get('defaultFrom', 'USD');
  to = (argv.length > 2) ? process.argv.slice(4) : config.get('defaultTo', ['USD', 'EUR', 'GBP', 'PLN']).filter(c => c !== from);
} else {
  amount = 1;
  from = argv[0] || config.get('defaultFrom', 'USD');
  to = (argv.length > 1) ? process.argv.slice(3) : config.get('defaultTo', ['USD', 'EUR', 'GBP', 'PLN']).filter(c => c !== from);
}

const command = { amount, from, to };

Because now I get

$ cash eur

✔ 65.794 (RUB) Russian Ruble
✔ 0.883 (EUR) Euro

Conversion of USD 1

Trying to convert 1 EUR to default USD and RUB, but got converted 1 USD instead

from cash-cli.

Related Issues (15)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.