Source: swcad-js-std-specs/src/core/standards/std-crafts.js

"use strict"

/**
 * Craft standards
 * @namespace crafts
 * @memberof data.standards
 */
const craftStd = ({ lib, swLib }) => {
    return {
        DIAM_TOOTHPICK: 2.30,
        DIAM_BBQ_SKEWER: 3.25,
        POPSICLE_STICK_WIDTH: 10,
        POPSICLE_STICK_THICKNESS: 2,
        POPSICLE_STICK_LENGTH: 114,
    }
}

module.exports = { init: craftStd };