UNPKG

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