2.0.1 • Published 8 years ago

knockout.money v2.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
8 years ago

Knockout Money Extender

A simple knockout extender which wraps accounting.js.

Installation

npm install knockout-money

Then add knockout.money.js to your project.

Usage

require the script in your bundle, then:

var money = ko.observable().extend({ money: true });
money("17000");

console.log(money()); //17000
console.log(money.formatted()); //$17,000.00

You can also use it to set formatted money as a value. This is useful for binding user-editable text boxes to the formatted computed.

money.formatted("$17,000.56");
console.log(money()); //17000.56