@thi.ng/units
Version:
Extensible SI unit creation, conversions, quantities & calculations (incl. ~170 predefined units & constants)
36 lines (35 loc) • 403 B
JavaScript
const PREFIXES = {
Q: 1e30,
R: 1e27,
Y: 1e24,
Z: 1e21,
E: 1e18,
P: 1e15,
T: 1e12,
G: 1e9,
M: 1e6,
k: 1e3,
h: 100,
d: 0.1,
c: 0.01,
m: 1e-3,
\u00B5: 1e-6,
n: 1e-9,
p: 1e-12,
f: 1e-15,
a: 1e-18,
z: 1e-21,
y: 1e-24,
r: 1e-27,
q: 1e-30
};
const NONE = {
dim: [0, 0, 0, 0, 0, 0, 0],
scale: 1,
offset: 0,
coherent: false
};
export {
NONE,
PREFIXES
};