UNPKG

660 BJavaScriptView Raw
1"use strict";
2
3Object.defineProperty(exports, "__esModule", {
4 value: true
5});
6exports.noBignumber = noBignumber;
7exports.noFraction = noFraction;
8exports.noMatrix = noMatrix;
9exports.noIndex = noIndex;
10exports.noSubset = noSubset;
11
12function noBignumber() {
13 throw new Error('No "bignumber" implementation available');
14}
15
16function noFraction() {
17 throw new Error('No "fraction" implementation available');
18}
19
20function noMatrix() {
21 throw new Error('No "matrix" implementation available');
22}
23
24function noIndex() {
25 throw new Error('No "index" implementation available');
26}
27
28function noSubset() {
29 throw new Error('No "matrix" implementation available');
30}
\No newline at end of file