Modules@robinpath/money

@robinpath/money

0.1.1Public

Currency formatting, safe arithmetic, conversion, tax, discount, and exchange rates

@robinpath/money

Currency formatting, safe arithmetic, conversion, tax, discount, and exchange rates

Category Functions Auth License

Why use this module?

The money module lets you:

  • Format number as currency
  • Parse currency string to number
  • Safe addition
  • Safe subtraction
  • Safe multiplication

All functions are callable directly from RobinPath scripts with a simple, consistent API.

Installation

npm install @robinpath/money

Quick Start

No credentials needed — start using it right away:

money.parse "$1,234.56"

Available Functions

FunctionDescription
money.formatFormat number as currency
money.parseParse currency string to number
money.addSafe addition
money.subtractSafe subtraction
money.multiplySafe multiplication
money.divideSafe division
money.roundRound to currency precision
money.convertConvert between currencies
money.fetchRateFetch live exchange rate
money.splitSplit amount evenly
money.percentageCalculate percentage
money.discountApply discount
money.taxAdd tax
money.currencyInfoGet currency info
money.listCurrenciesList all currency codes
money.isValidCodeCheck if currency code is valid

Examples

Parse currency string to number

money.parse "$1,234.56"

Safe addition

money.add 0.1 0.2

Safe subtraction

money.subtract 10.50 3.25

Integration with RobinPath

import { RobinPath } from "@wiredwp/robinpath";
import Module from "@robinpath/money";

const rp = new RobinPath();
rp.registerModule(Module.name, Module.functions);
rp.registerModuleMeta(Module.name, Module.functionMetadata);

const result = await rp.executeScript(`
  money.parse "$1,234.56"
`);

Full API Reference

See MODULE.md for complete documentation including all parameters, return types, error handling, and advanced examples.

Related Modules

License

MIT

Versions (1)

VersionTagPublished
0.1.1latestyesterday
Install
$ robinpath install @robinpath/money
Version0.1.1
LicenseMIT
Unpacked Size6.0 KB
Versions1
Weekly Downloads0
Total Downloads0
Stars0
Last Publishyesterday
Createdyesterday

Category

utilities