UNPKG

@woosh/meep-engine

Version:

Pure JavaScript game engine. Fully featured and production ready.

14 lines (12 loc) 313 B
import { NamedUnit } from "../NamedUnit.js"; import { UnitMatrix } from "../UnitMatrix.js"; /** * SI base unit of amount of substance. * @type {NamedUnit} */ export const MOLE = new NamedUnit( 'Mole', 'mol', 'SI base unit of amount of substance.', new UnitMatrix().set(0, 0, 0, 0, 0, 1, 0) );