weekly-and-monthly-rate
v1.0.3
Published
Convert between weekly rate and monthly rate
Downloads
16
Readme
weekly-and-monthly-rate
Convert between weekly rate and monthly rate
Usage
install via npm
$ npm install weekly-and-monthly-rate
1.Convert weekly to monthly rate
var rateConverter = require('weekly-and-monthly-rate');
var monthlyRate = rateConverter.ratePerMonth(300);
// 1300
2.Convert monthly to weekly rate
var rateConverter = require('weekly-and-monthly-rate');
var weeklyRate = rateConverter.ratePerWeek(1300);
// 300
Requirements
Quick start
- clone of fork the repo
- cd
weekly-and-monthly-rate
- run
npm install
- run
gulp
Issues
Find a bug or want to request a new feature? Please let me know by submitting an issue.
Contributing
Anyone and everyone is welcome to contribute.
- Fork it ( https://github.com/tsamaya/weekly-and-monthly-rate and click "Fork" )
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request
Resources
Licensing
Licensed under the MIT License
A copy of the license is available in the repository's LICENSE file.