/** * This file is part of Measurement Toolkit * * (c) Bas Peeters * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ import {Kilogram} from "./Kilogram"; import {SiDerivedUnit} from "./SiDerivedUnit"; export class Zeptogram extends SiDerivedUnit { public symbol = "zg"; public baseUnit = new Kilogram(this.value * Math.pow(10, -24)); }