scope-of-works

0.0.3 • Public • Published

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

Package Sidebar

Install

npm i scope-of-works

Weekly Downloads

1

Version

0.0.3

License

MIT

Unpacked Size

13.4 kB

Total Files

24

Last publish

Collaborators

  • cent1pede