configReadonly.js 726 B

123456789101112131415
  1. import _extends from "@babel/runtime/helpers/extends";
  2. import { DEFAULT_CONFIG } from '../core/config.js';
  3. import { MATRIX_OPTIONS, NUMBER_OPTIONS } from '../core/function/config.js';
  4. // create a read-only version of config
  5. export var config = /* #__PURE__ */function config(options) {
  6. if (options) {
  7. throw new Error('The global config is readonly. \n' + 'Please create a mathjs instance if you want to change the default configuration. \n' + 'Example:\n' + '\n' + ' import { create, all } from \'mathjs\';\n' + ' const mathjs = create(all);\n' + ' mathjs.config({ number: \'BigNumber\' });\n');
  8. }
  9. return Object.freeze(DEFAULT_CONFIG);
  10. };
  11. _extends(config, DEFAULT_CONFIG, {
  12. MATRIX_OPTIONS,
  13. NUMBER_OPTIONS
  14. });