UNPKG

@thi.ng/units

Version:

Extensible SI unit creation, conversions, quantities & calculations, CLI calculator (incl. Lisp-like DSL and ~170 predefined units & constants)

10 lines (9 loc) 251 B
import { defUnit, mul, prefix } from "../unit.js"; import { m_s2 } from "./accel.js"; import { kg } from "./mass.js"; const N = defUnit("N", "newton", mul(kg, m_s2, true)); const kN = defUnit("kN", "kilonewton", prefix("k", N)); export { N, kN };