UNPKG

linear-feet

Version:

A simple package for calculating linear feet

13 lines (12 loc) 351 B
"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;