mirror of
https://github.com/josdejong/mathjs.git
synced 2026-01-25 15:07:57 +00:00
8 lines
201 B
JavaScript
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]);
|
|
}
|
|
}
|