UNPKG

485 BJavaScriptView Raw
1// This file contains all factory functions of math.js
2
3module.exports = [
4 require('./type'), // data types (Matrix, Complex, Unit, ...)
5 require('./constants'), // constants
6 require('./function'), // functions
7
8 // load ./expression *after* ./function since we need to
9 // attach transforms to functions that are imported there
10 require('./expression'), // expression parsing
11
12 require('./json'), // serialization utility (math.json.reviver)
13 require('./error') // errors
14]