feat:node-modules
This commit is contained in:
22
node_modules/mathjs/lib/cjs/entry/configReadonly.js
generated
vendored
Normal file
22
node_modules/mathjs/lib/cjs/entry/configReadonly.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
"use strict";
|
||||
|
||||
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
|
||||
Object.defineProperty(exports, "__esModule", {
|
||||
value: true
|
||||
});
|
||||
exports.config = void 0;
|
||||
var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
|
||||
var _config = require("../core/config.js");
|
||||
var _config2 = require("../core/function/config.js");
|
||||
// create a read-only version of config
|
||||
const config = function (options) {
|
||||
if (options) {
|
||||
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');
|
||||
}
|
||||
return Object.freeze(_config.DEFAULT_CONFIG);
|
||||
};
|
||||
exports.config = config;
|
||||
(0, _extends2.default)(config, _config.DEFAULT_CONFIG, {
|
||||
MATRIX_OPTIONS: _config2.MATRIX_OPTIONS,
|
||||
NUMBER_OPTIONS: _config2.NUMBER_OPTIONS
|
||||
});
|
||||
Reference in New Issue
Block a user