0.0.3 • Published 6 years ago

scope-of-works v0.0.3

Weekly downloads
4
License
MIT
Repository
github
Last release
6 years ago

scope-of-works

Math library for construction scope of works.

Install

npm

npm install scope-of-works

yarn

yarn add scope-of-works

Usage

ES5

const area = require('scope-of-works').area;

const length = 20;
const width = 40;
const floorArea = area(length, width);

console.log(floorArea); // 800

ES6

Treeshaking ready.

import { area } from 'scope-of-works';

const length = 20;
const width = 40;
const floorArea = area(length, width);

console.log(floorArea); // 800
0.0.3

6 years ago

0.0.2

6 years ago

0.0.1

6 years ago