Home Reference Source

src/decimal.js

  1. // Lazy-load - we might not need decimal. It's a peerDependency, so the parent
  2. // library must include it if needed - we don't, because many callers don't need
  3. // it.
  4. let Decimal
  5. export function requireDecimal(config) {
  6. return (config && config.Decimal) || Decimal || (Decimal = (function() {
  7. // Allow node callers to inject their own decimal.js, because I am sick to
  8. // death of trying to wrangle require/webpack/import/etc.
  9. if (global && global.Decimal) {
  10. return global.Decimal
  11. }
  12. // `nwb.config.js: extenals` ensures this points to window.Decimal for umd (`<script src="...">`) builds
  13. return require('decimal.js')
  14. })())
  15. }