🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

fraction-math-js

Package Overview
Dependencies
Maintainers
1
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fraction-math-js

bignumber fraction calculator and node module.

Source
npmnpm
Version
0.1.10
Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

fraction-math-js

bignumber fraction calculator and node module.

need ES6 support!

node4.1.1 arguments:
	--harmony --harmony_array_includes

Install

npm install fraction-math-js -g

REPL

> fcalc
input expression,like:
fcalc> (1+1)*2/12

(1+1)*2/12  =  1/3

Load

"use strict"

let F = require('fraction-math-js').builder;

Use

let x=F("1+2/3*5");//1+2/3*5 = 13/3 Infix

let y=F("1+",x);//1+x = 16/3

let z=F("+",1,y);//1+y = 19/3 Prefix

let a=F(y,z,"+");//y+z = 35/3 Postfix

console.log("%s",F("+ 1 1"));//1+1=2 postfix and prefix need space

console.log(a.toString());//35/3

console.log(a.n.toString());//35

console.log(a.d.toString());//3

let b=F(a,"+",1.1);//a+1.1 = 383/30

console.log(b.toString());//383/30

console.log(b.toBigNumber().toNumber());//12.766666666666667

Run

//save to sample.js and

> node --harmony --harmony_array_includes sample.js

Keywords

fraction

FAQs

Package last updated on 04 Oct 2015

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts