noop.js 655 B

12345678910111213141516171819202122232425
  1. "use strict";
  2. Object.defineProperty(exports, "__esModule", {
  3. value: true
  4. });
  5. exports.noBignumber = noBignumber;
  6. exports.noFraction = noFraction;
  7. exports.noIndex = noIndex;
  8. exports.noMatrix = noMatrix;
  9. exports.noSubset = noSubset;
  10. function noBignumber() {
  11. throw new Error('No "bignumber" implementation available');
  12. }
  13. function noFraction() {
  14. throw new Error('No "fraction" implementation available');
  15. }
  16. function noMatrix() {
  17. throw new Error('No "matrix" implementation available');
  18. }
  19. function noIndex() {
  20. throw new Error('No "index" implementation available');
  21. }
  22. function noSubset() {
  23. throw new Error('No "matrix" implementation available');
  24. }