Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/okunishinishi/node-chopcal
Node.js module for chop numbers.
https://github.com/okunishinishi/node-chopcal
Last synced: 2 months ago
JSON representation
Node.js module for chop numbers.
- Host: GitHub
- URL: https://github.com/okunishinishi/node-chopcal
- Owner: okunishinishi
- License: mit
- Created: 2015-10-05T23:13:15.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-24T05:41:01.000Z (almost 6 years ago)
- Last Synced: 2024-10-28T15:31:31.094Z (3 months ago)
- Language: JavaScript
- Size: 74.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
chopcal
==========[![Build Status][bd_travis_shield_url]][bd_travis_url]
[![npm Version][bd_npm_shield_url]][bd_npm_url]
[![JS Standard][bd_standard_shield_url]][bd_standard_url][bd_repo_url]: https://github.com/okunishinishi/node-chopcal
[bd_travis_url]: http://travis-ci.org/okunishinishi/node-chopcal
[bd_travis_shield_url]: http://img.shields.io/travis/okunishinishi/node-chopcal.svg?style=flat
[bd_travis_com_url]: http://travis-ci.com/okunishinishi/node-chopcal
[bd_travis_com_shield_url]: https://api.travis-ci.com/okunishinishi/node-chopcal.svg?token=
[bd_license_url]: https://github.com/okunishinishi/node-chopcal/blob/master/LICENSE
[bd_codeclimate_url]: http://codeclimate.com/github/okunishinishi/node-chopcal
[bd_codeclimate_shield_url]: http://img.shields.io/codeclimate/github/okunishinishi/node-chopcal.svg?style=flat
[bd_codeclimate_coverage_shield_url]: http://img.shields.io/codeclimate/coverage/github/okunishinishi/node-chopcal.svg?style=flat
[bd_gemnasium_url]: https://gemnasium.com/okunishinishi/node-chopcal
[bd_gemnasium_shield_url]: https://gemnasium.com/okunishinishi/node-chopcal.svg
[bd_npm_url]: http://www.npmjs.org/package/chopcal
[bd_npm_shield_url]: http://img.shields.io/npm/v/chopcal.svg?style=flat
[bd_standard_url]: http://standardjs.com/
[bd_standard_shield_url]: https://img.shields.io/badge/code%20style-standard-brightgreen.svgChop numbers.
Installation
-----```bash
$ npm install chopcal --save
```Usage
---------```javascript
"use strict";const chopcal = require('chopcal')
//------------------------
// ceil
//------------------------
console.log(chopcal.ceil(14, 10)) //-> 20
console.log(chopcal.ceil(16, 10)) //-> 20
console.log(chopcal.ceil(0.23, 0.1)) //-> 0.3
console.log(chopcal.ceil(0.27, 0.1)) //-> 0.3//------------------------
// floor
//------------------------
console.log(chopcal.floor(14, 10)) //-> 10
console.log(chopcal.floor(16, 10)) //-> 10
console.log(chopcal.floor(0.23, 0.1)) //-> 0.2
console.log(chopcal.floor(0.27, 0.1)) //-> 0.2//------------------------
// round
//------------------------
console.log(chopcal.round(14, 10)) //-> 10
console.log(chopcal.round(16, 10)) //-> 20
console.log(chopcal.round(0.23, 0.1)) //-> 0.2
console.log(chopcal.round(0.27, 0.1)) //-> 0.3```
API
---| Signature | Description |
| --------- | ----------- |
| .ceil(val, base) | Chop number to ceil. |
| .floor(val, base) | Chop number to floor. |
| .round(val, base) | Chop number to round. |License
-------
This software is released under the [MIT License](https://github.com/okunishinishi/node-chopcal/blob/master/LICENSE).Links
------+ [numcal][numcal_url]
+ [rangcal][rangcal_url]
+ [veccal][veccal_url][numcal_url]: https://github.com/okunishinishi/node-numcal
[rangcal_url]: https://github.com/okunishinishi/node-rangcal
[veccal_url]: https://github.com/okunishinishi/node-veccal