mathjs
Version:
Math.js is an extensive math library for JavaScript and Node.js. It features a flexible expression parser with support for symbolic computation, comes with a large set of built-in functions and constants, and offers an integrated solution to work with dif
13 lines (11 loc) • 434 B
JavaScript
export function createDeprecatedImport () {
return function deprecatedImport () {
throw new Error('The global import function is not available anymore in v6.0.0. \n' +
'Please create a mathjs instance if you want to import functions. \n' +
'Example:\n' +
'\n' +
' import { create, all } from \'mathjs\';\n' +
' const mathjs = create(all);\n' +
' mathjs.import(...);\n')
}
}