/** * Helpers needed to implement operations. */ export const SPI = Symbol('SPI'); /** * Coefficient part of a decimal. */ export const COEFFICIENT = Symbol('coefficient'); /** * Exponent part of a decimal. */ export const EXPONENT = Symbol('exponent');