UNPKG

1.38 kBPlain TextView Raw
1/*!
2 * decimal.js v10.4.3
3 * An arbitrary-precision Decimal type for JavaScript.
4 * https://github.com/MikeMcl/decimal.js
5 * Copyright (c) 2022 Michael Mclaughlin <M8ch88l@gmail.com>
6 * MIT Licence
7 */
8
9/**
10 * @license Fraction.js v4.3.7 31/08/2023
11 * https://www.xarg.org/2014/03/rational-numbers-in-javascript/
12 *
13 * Copyright (c) 2023, Robert Eisele (robert@raw.org)
14 * Dual licensed under the MIT or GPL Version 2 licenses.
15 **/
16
17/**
18 * math.js
19 * https://github.com/josdejong/mathjs
20 *
21 * Math.js is an extensive math library for JavaScript and Node.js,
22 * It features real and complex numbers, units, matrices, a large set of
23 * mathematical functions, and a flexible expression parser.
24 *
25 * @version 13.2.1
26 * @date 2024-11-06
27 *
28 * @license
29 * Copyright (C) 2013-2024 Jos de Jong <wjosdejong@gmail.com>
30 *
31 * Licensed under the Apache License, Version 2.0 (the "License"); you may not
32 * use this file except in compliance with the License. You may obtain a copy
33 * of the License at
34 *
35 * https://www.apache.org/licenses/LICENSE-2.0
36 *
37 * Unless required by applicable law or agreed to in writing, software
38 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
39 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
40 * License for the specific language governing permissions and limitations under
41 * the License.
42 */