UNPKG
linear-feet
Version:
latest (1.0.6)
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
A simple package for calculating linear feet
github.com/Pharylon/LinearFeet
Pharylon/LinearFeet
linear-feet
/
dist
/
src
/
skid.js
13 lines
(12 loc)
•
351 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
"use strict"
;
Object
.
defineProperty
(
exports
,
"__esModule"
, {
value
:
true
});
class
Skid
{
constructor
(
quantity, length, width, height, stackable
) {
this
.
quantity
= quantity;
this
.
length
= length;
this
.
width
= width;
this
.
height
= height;
this
.
stackable
= stackable; } }
exports
.
Skid
=
Skid
;