mathjs/src/init.js
2013-04-13 00:13:03 +02:00

8 lines
201 B
JavaScript

// initialise the Chain prototype with all functions and constants in math
for (var prop in math) {
if (math.hasOwnProperty(prop) && prop) {
createSelectorProxy(prop, math[prop]);
}
}