import { add } from "@david/add"; export function subtract(a: number, b: number): number { return add(a, -b); }