cfpb / is-money-usd

A node module to test for a USD formatted input.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

is-money-usd

Test for a USD formatted input

Build Status

Installation

First install node.js. Then:

npm install is-money-usd --save

Usage

var isMoney = require('is-money-usd');
isMoney('$1,999.99'); // true
isMoney(400); // true
isMoney('not money') // false
isMoney(',45$.00') //false

Contributing

Please read the Contributing guidelines.

Running Tests

We are using nodeunit to test. To run tests, first install nodeunit and any dependencies via npm:

npm install

Run tests with:

npm test

About

A node module to test for a USD formatted input.

License:Creative Commons Zero v1.0 Universal


Languages

Language:JavaScript 100.0%