1.0.6 • Published 3 years ago

wcalc v1.0.6

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

WOUA Sample SDK : Demo

This module was born out of necessity and frustration. It is a little hacky but at least it seems to work..

Usage

> npm install wcalc

Javascript:

<script src="node_modules/wcalc/woua/wcalc.js"></script>
    <script>
        var mathOpt = new wcalc.Mathematic();
        console.log(mathOpt.add(300,500));
</script>

Typesript:

import { Mathematic } from "wcalc/woua/wcalc";
var mathOpt = new Mathematic();
console.log(mathOpt.add(300,500));

Node:

var mathz = require("wcalc/woua/wcalc");
var mathOpt = new mathz.Mathematic();
console.log(mathOpt.add(300,500));
1.0.6

3 years ago

1.0.5

3 years ago

1.0.3

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago