@fileverse-dev/formulajs 4.4.11-mod-18-patch-20 → 4.4.11-mod-21-patch-1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,26 +1,4 @@
1
- /* @fileverse-dev/formulajs v4.4.11-mod-18-patch-20 */
2
- var _excluded = [ "confirmations", "dataDecoded" ];
3
-
4
- function _objectWithoutProperties(e, t) {
5
- if (null == e) return {};
6
- var o, r, i = _objectWithoutPropertiesLoose(e, t);
7
- if (Object.getOwnPropertySymbols) {
8
- var n = Object.getOwnPropertySymbols(e);
9
- for (r = 0; r < n.length; r++) o = n[r], -1 === t.indexOf(o) && {}.propertyIsEnumerable.call(e, o) && (i[o] = e[o]);
10
- }
11
- return i;
12
- }
13
-
14
- function _objectWithoutPropertiesLoose(r, e) {
15
- if (null == r) return {};
16
- var t = {};
17
- for (var n in r) if ({}.hasOwnProperty.call(r, n)) {
18
- if (-1 !== e.indexOf(n)) continue;
19
- t[n] = r[n];
20
- }
21
- return t;
22
- }
23
-
1
+ /* @fileverse-dev/formulajs v4.4.11-mod-21-patch-1 */
24
2
  function _regeneratorRuntime() {
25
3
  "use strict";
26
4
  /*! regenerator-runtime -- Copyright (c) 2014-present, Facebook, Inc. -- license (MIT): https://github.com/babel/babel/blob/main/packages/babel-helpers/LICENSE */ _regeneratorRuntime = function _regeneratorRuntime() {
@@ -443,9 +421,16 @@ function _typeof(o) {
443
421
  var addOn = date > -22038912e5 ? 2 : 1;
444
422
  return Math.ceil((date - d1900) / 864e5) + addOn;
445
423
  }
424
+ function formatDate(date) {
425
+ var day = String(date.getDate()).padStart(2, "0");
426
+ var month = String(date.getMonth() + 1).padStart(2, "0");
427
+ var year = date.getFullYear();
428
+ return "".concat(day, "/").concat(month, "/").concat(year);
429
+ }
446
430
  var date = Object.freeze({
447
431
  __proto__: null,
448
432
  dateToSerial: dateToSerial,
433
+ formatDate: formatDate,
449
434
  get returnSerial() {
450
435
  return returnSerial;
451
436
  },
@@ -795,9 +780,37 @@ function _typeof(o) {
795
780
  return serialToDate(d);
796
781
  }
797
782
  if (typeof date === "string") {
798
- date = /(\d{4})-(\d\d?)-(\d\d?)$/.test(date) ? new Date(date + "T00:00:00.000") : new Date(date);
799
- if (!isNaN(date)) {
800
- return date;
783
+ if (/^\d{4}-\d{1,2}-\d{1,2}$/.test(date)) {
784
+ return new Date(date + "T00:00:00.000");
785
+ }
786
+ var match = /^(\d{1,2})\/(\d{1,2})\/(\d{4})$/.exec(date);
787
+ if (match) {
788
+ var _match$map = match.map(Number), _match$map2 = _slicedToArray(_match$map, 4), day = _match$map2[1], month = _match$map2[2], year = _match$map2[3];
789
+ var _d = new Date(year, month - 1, day);
790
+ if (!isNaN(_d)) {
791
+ return _d;
792
+ }
793
+ }
794
+ if (/^\d{1,2}:\d{2}(:\d{2})?$/.test(date)) {
795
+ var _date$split$map = date.split(":").map(Number), _date$split$map2 = _slicedToArray(_date$split$map, 3), h = _date$split$map2[0], m = _date$split$map2[1], _date$split$map2$ = _date$split$map2[2], s = _date$split$map2$ === void 0 ? "0" : _date$split$map2$;
796
+ var now = new Date;
797
+ now.setHours(h, m, s, 0);
798
+ return now;
799
+ }
800
+ var ampmMatch = /^(\d{1,2}):(\d{2})\s*(AM|PM)$/i.exec(date);
801
+ if (ampmMatch) {
802
+ var _ampmMatch = _slicedToArray(ampmMatch, 4), hour = _ampmMatch[1], minute = _ampmMatch[2], meridian = _ampmMatch[3];
803
+ hour = parseInt(hour);
804
+ minute = parseInt(minute);
805
+ if (meridian.toUpperCase() === "PM" && hour !== 12) hour += 12;
806
+ if (meridian.toUpperCase() === "AM" && hour === 12) hour = 0;
807
+ var _now = new Date;
808
+ _now.setHours(hour, minute, 0, 0);
809
+ return _now;
810
+ }
811
+ var parsed = new Date(date);
812
+ if (!isNaN(parsed)) {
813
+ return parsed;
801
814
  }
802
815
  }
803
816
  return value;
@@ -7520,9 +7533,6 @@ function _typeof(o) {
7520
7533
  }
7521
7534
  function SUM() {
7522
7535
  var result = 0;
7523
- console.log("LLLLO", argsToArray(arguments), {
7524
- arguments: arguments
7525
- });
7526
7536
  arrayEach(argsToArray(arguments), (function(value) {
7527
7537
  if (result instanceof Error) {
7528
7538
  return false;
@@ -7986,7 +7996,8 @@ function _typeof(o) {
7986
7996
  if (start_date instanceof Error) {
7987
7997
  return start_date;
7988
7998
  }
7989
- return dateToSerial(startOfDay(end_date)) - dateToSerial(startOfDay(start_date));
7999
+ var diffMs = startOfDay(end_date).getTime() - startOfDay(start_date).getTime();
8000
+ return diffMs / (1e3 * 60 * 60 * 24);
7990
8001
  }
7991
8002
  function DAYS360(start_date, end_date, method) {
7992
8003
  method = parseBool(method || "false");
@@ -8155,6 +8166,7 @@ function _typeof(o) {
8155
8166
  }
8156
8167
  return total;
8157
8168
  };
8169
+ var NETWORKDAYS_INTL = NETWORKDAYS.INTL;
8158
8170
  function NOW() {
8159
8171
  return returnSerial ? dateToSerial(new Date) : new Date;
8160
8172
  }
@@ -8175,7 +8187,10 @@ function _typeof(o) {
8175
8187
  if (hour < 0 || minute < 0 || second < 0) {
8176
8188
  return num;
8177
8189
  }
8178
- return (3600 * hour + 60 * minute + second) / 86400;
8190
+ var hh = String(hour).padStart(2, "0");
8191
+ var mm = String(minute).padStart(2, "0");
8192
+ var ss = String(second).padStart(2, "0");
8193
+ return "".concat(hh, ":").concat(mm, ":").concat(ss);
8179
8194
  }
8180
8195
  function TIMEVALUE(time_text) {
8181
8196
  time_text = parseDate(time_text);
@@ -8186,7 +8201,7 @@ function _typeof(o) {
8186
8201
  }
8187
8202
  function TODAY() {
8188
8203
  var today = startOfDay(new Date);
8189
- return returnSerial ? dateToSerial(today) : today;
8204
+ return formatDate(today);
8190
8205
  }
8191
8206
  function WEEKDAY(serial_number, return_type) {
8192
8207
  serial_number = parseDate(serial_number);
@@ -8219,6 +8234,10 @@ function _typeof(o) {
8219
8234
  function WORKDAY(start_date, days, holidays) {
8220
8235
  return WORKDAY.INTL(start_date, days, 1, holidays);
8221
8236
  }
8237
+ function ISDATE(value) {
8238
+ var parsed = parseDate(value);
8239
+ return !(parsed instanceof Error);
8240
+ }
8222
8241
  WORKDAY.INTL = function(start_date, days, weekend, holidays) {
8223
8242
  start_date = parseDate(start_date);
8224
8243
  if (start_date instanceof Error) {
@@ -8268,8 +8287,9 @@ function _typeof(o) {
8268
8287
  if (start_date.getFullYear() < 1900) {
8269
8288
  return value;
8270
8289
  }
8271
- return start_date;
8290
+ return formatDate(start_date);
8272
8291
  };
8292
+ var WORKDAY_INTL = WORKDAY.INTL;
8273
8293
  function YEAR(serial_number) {
8274
8294
  serial_number = parseDate(serial_number);
8275
8295
  if (serial_number instanceof Error) {
@@ -10786,17 +10806,17 @@ function _typeof(o) {
10786
10806
  }
10787
10807
  var SERVICE_API_KEY = {
10788
10808
  Etherscan: "ETHERSCAN_API_KEY",
10789
- Coingecko: "COINGECKO_API_KEY",
10790
- Safe: "SAFE_API_KEY"
10809
+ Coingecko: "COINGECKO_API_KEY"
10791
10810
  };
10792
10811
  var CHAIN_ID_MAP = {
10793
10812
  ethereum: 1,
10794
10813
  gnosis: 100,
10795
10814
  base: 8453
10796
10815
  };
10797
- var SAFE_CHAIN_MAP = {
10798
- ethereum: "eth",
10799
- gnosis: "gno"
10816
+ var ERROR_MESSAGES_FLAG = {
10817
+ INVALID_API_KEY: "_MISSING",
10818
+ RATE_LIMIT: "_RATE_LIMIT_REACHED",
10819
+ DEFAULT: "FETCH_ERROR"
10800
10820
  };
10801
10821
  var fromTimeStampToBlock = function() {
10802
10822
  var _ref = _asyncToGenerator(_regeneratorRuntime().mark((function _callee(timestamp, chain, apiKey) {
@@ -10840,57 +10860,24 @@ function _typeof(o) {
10840
10860
  }
10841
10861
  function _ETHERSCAN() {
10842
10862
  _ETHERSCAN = _asyncToGenerator(_regeneratorRuntime().mark((function _callee2(address, page, offset) {
10843
- var API_KEY, url, response, json;
10844
10863
  return _regeneratorRuntime().wrap((function _callee2$(_context2) {
10845
10864
  while (1) switch (_context2.prev = _context2.next) {
10846
10865
  case 0:
10847
- API_KEY = window.localStorage.getItem(SERVICE_API_KEY.Etherscan);
10848
- url = "https://api.etherscan.io/api?module=account&action=txlist&address=".concat(address, "&startblock=0&endblock=99999999&page=").concat(page, "&offset=").concat(offset, "&sort=asc&apikey=").concat(API_KEY);
10849
- _context2.prev = 2;
10850
- _context2.next = 5;
10851
- return fetch(url);
10852
-
10853
- case 5:
10854
- response = _context2.sent;
10855
- if (response.ok) {
10856
- _context2.next = 8;
10857
- break;
10858
- }
10859
- throw new Error("HTTP error! Status: ".concat(response.status));
10860
-
10861
- case 8:
10862
- _context2.next = 10;
10863
- return response.json();
10866
+ return _context2.abrupt("return", "".concat(SERVICE_API_KEY.Etherscan).concat(ERROR_MESSAGES_FLAG.RATE_LIMIT));
10864
10867
 
10865
- case 10:
10866
- json = _context2.sent;
10867
- if (!json.result.includes("Invalid API Key")) {
10868
- _context2.next = 13;
10869
- break;
10870
- }
10871
- return _context2.abrupt("return", "".concat(SERVICE_API_KEY.Etherscan, "_MISSING"));
10872
-
10873
- case 13:
10874
- return _context2.abrupt("return", json.result);
10875
-
10876
- case 16:
10877
- _context2.prev = 16;
10878
- _context2.t0 = _context2["catch"](2);
10879
- return _context2.abrupt("return", "ERROR IN FETCHING");
10880
-
10881
- case 19:
10868
+ case 1:
10882
10869
  case "end":
10883
10870
  return _context2.stop();
10884
10871
  }
10885
- }), _callee2, null, [ [ 2, 16 ] ]);
10872
+ }), _callee2);
10886
10873
  })));
10887
10874
  return _ETHERSCAN.apply(this, arguments);
10888
10875
  }
10889
- function GETPRICE(_x7, _x8) {
10890
- return _GETPRICE.apply(this, arguments);
10876
+ function COINGECKO(_x7, _x8) {
10877
+ return _COINGECKO.apply(this, arguments);
10891
10878
  }
10892
- function _GETPRICE() {
10893
- _GETPRICE = _asyncToGenerator(_regeneratorRuntime().mark((function _callee3(token, vs_currencies) {
10879
+ function _COINGECKO() {
10880
+ _COINGECKO = _asyncToGenerator(_regeneratorRuntime().mark((function _callee3(token, vs_currencies) {
10894
10881
  var API_KEY, url, options, response, json, jsonResponse, output, _i10, _Object$entries, _Object$entries$_i, coin, prices, _i11, _Object$entries2, _Object$entries2$_i, currency, _value5, key;
10895
10882
  return _regeneratorRuntime().wrap((function _callee3$(_context3) {
10896
10883
  while (1) switch (_context3.prev = _context3.next) {
@@ -10911,7 +10898,7 @@ function _typeof(o) {
10911
10898
  case 6:
10912
10899
  response = _context3.sent;
10913
10900
  if (response.ok) {
10914
- _context3.next = 13;
10901
+ _context3.next = 15;
10915
10902
  break;
10916
10903
  }
10917
10904
  _context3.next = 10;
@@ -10923,13 +10910,20 @@ function _typeof(o) {
10923
10910
  _context3.next = 13;
10924
10911
  break;
10925
10912
  }
10926
- return _context3.abrupt("return", "".concat(SERVICE_API_KEY.Coingecko, "_MISSING"));
10913
+ return _context3.abrupt("return", "".concat(SERVICE_API_KEY.Coingecko).concat(ERROR_MESSAGES_FLAG.INVALID_API_KEY));
10927
10914
 
10928
10915
  case 13:
10929
- _context3.next = 15;
10930
- return response.json();
10916
+ if (!(response.status === 429)) {
10917
+ _context3.next = 15;
10918
+ break;
10919
+ }
10920
+ return _context3.abrupt("return", "".concat(SERVICE_API_KEY.Coingecko).concat(ERROR_MESSAGES_FLAG.RATE_LIMIT));
10931
10921
 
10932
10922
  case 15:
10923
+ _context3.next = 17;
10924
+ return response.json();
10925
+
10926
+ case 17:
10933
10927
  jsonResponse = _context3.sent;
10934
10928
  output = {};
10935
10929
  for (_i10 = 0, _Object$entries = Object.entries(jsonResponse); _i10 < _Object$entries.length; _i10++) {
@@ -10944,24 +10938,24 @@ function _typeof(o) {
10944
10938
  }
10945
10939
  return _context3.abrupt("return", [ output ]);
10946
10940
 
10947
- case 21:
10948
- _context3.prev = 21;
10941
+ case 23:
10942
+ _context3.prev = 23;
10949
10943
  _context3.t0 = _context3["catch"](3);
10950
- return _context3.abrupt("return", "ERROR IN FETCHING");
10944
+ return _context3.abrupt("return", ERROR_MESSAGES_FLAG.DEFAULT);
10951
10945
 
10952
- case 24:
10946
+ case 26:
10953
10947
  case "end":
10954
10948
  return _context3.stop();
10955
10949
  }
10956
- }), _callee3, null, [ [ 3, 21 ] ]);
10950
+ }), _callee3, null, [ [ 3, 23 ] ]);
10957
10951
  })));
10958
- return _GETPRICE.apply(this, arguments);
10952
+ return _COINGECKO.apply(this, arguments);
10959
10953
  }
10960
- function OX(_x9, _x0, _x1, _x10, _x11) {
10961
- return _OX.apply(this, arguments);
10954
+ function EOA(_x9, _x0, _x1, _x10, _x11) {
10955
+ return _EOA.apply(this, arguments);
10962
10956
  }
10963
- function _OX() {
10964
- _OX = _asyncToGenerator(_regeneratorRuntime().mark((function _callee4(address, categories, chain, startTime, endTime) {
10957
+ function _EOA() {
10958
+ _EOA = _asyncToGenerator(_regeneratorRuntime().mark((function _callee4(address, categories, chain, startTime, endTime) {
10965
10959
  var API_KEYS, apiKey, chainId, action, timeQuery, startBlock, endBlock, url, _json$result, _json$result$includes, response, json;
10966
10960
  return _regeneratorRuntime().wrap((function _callee4$(_context4) {
10967
10961
  while (1) switch (_context4.prev = _context4.next) {
@@ -11042,21 +11036,28 @@ function _typeof(o) {
11042
11036
  return _context4.abrupt("return", "".concat(SERVICE_API_KEY[chain.charAt(0).toUpperCase() + chain.slice(1)], "_MISSING"));
11043
11037
 
11044
11038
  case 35:
11039
+ if (!json.result.includes("Max rate limit reached")) {
11040
+ _context4.next = 37;
11041
+ break;
11042
+ }
11043
+ return _context4.abrupt("return", "".concat(SERVICE_API_KEY.Etherscan).concat(ERROR_MESSAGES_FLAG.RATE_LIMIT));
11044
+
11045
+ case 37:
11045
11046
  return _context4.abrupt("return", json.result);
11046
11047
 
11047
- case 38:
11048
- _context4.prev = 38;
11048
+ case 40:
11049
+ _context4.prev = 40;
11049
11050
  _context4.t0 = _context4["catch"](24);
11050
11051
  console.log(_context4.t0);
11051
- return _context4.abrupt("return", "ERROR IN FETCHING");
11052
+ return _context4.abrupt("return", ERROR_MESSAGES_FLAG.DEFAULT);
11052
11053
 
11053
- case 42:
11054
+ case 44:
11054
11055
  case "end":
11055
11056
  return _context4.stop();
11056
11057
  }
11057
- }), _callee4, null, [ [ 24, 38 ] ]);
11058
+ }), _callee4, null, [ [ 24, 40 ] ]);
11058
11059
  })));
11059
- return _OX.apply(this, arguments);
11060
+ return _EOA.apply(this, arguments);
11060
11061
  }
11061
11062
  function FLVURL(_x12, _x13) {
11062
11063
  return _FLVURL.apply(this, arguments);
@@ -11082,101 +11083,6 @@ function _typeof(o) {
11082
11083
  })));
11083
11084
  return _FLVURL.apply(this, arguments);
11084
11085
  }
11085
- function SAFE(_x14, _x15, _x16, _x17, _x18) {
11086
- return _SAFE.apply(this, arguments);
11087
- }
11088
- function _SAFE() {
11089
- _SAFE = _asyncToGenerator(_regeneratorRuntime().mark((function _callee6(address, utility, chain, limit, offset) {
11090
- var apiKey, chainIdentifier, url, response, json;
11091
- return _regeneratorRuntime().wrap((function _callee6$(_context6) {
11092
- while (1) switch (_context6.prev = _context6.next) {
11093
- case 0:
11094
- if (!(typeof limit !== "number" || limit < 0)) {
11095
- _context6.next = 2;
11096
- break;
11097
- }
11098
- return _context6.abrupt("return", "INVALID_LIMIT");
11099
-
11100
- case 2:
11101
- if (!(typeof offset !== "number" || offset < 0)) {
11102
- _context6.next = 4;
11103
- break;
11104
- }
11105
- return _context6.abrupt("return", "INVALID_OFFSET");
11106
-
11107
- case 4:
11108
- if (!(utility !== "txns")) {
11109
- _context6.next = 6;
11110
- break;
11111
- }
11112
- return _context6.abrupt("return", "UTILITY IS NOT SUPPORTED");
11113
-
11114
- case 6:
11115
- apiKey = window.localStorage.getItem(SERVICE_API_KEY.Safe);
11116
- chainIdentifier = SAFE_CHAIN_MAP[chain];
11117
- if (apiKey) {
11118
- _context6.next = 10;
11119
- break;
11120
- }
11121
- return _context6.abrupt("return", "".concat(SERVICE_API_KEY.Safe, "_MISSING"));
11122
-
11123
- case 10:
11124
- if (chainIdentifier) {
11125
- _context6.next = 12;
11126
- break;
11127
- }
11128
- return _context6.abrupt("return", "CHAIN IS NOT SUPPORTED");
11129
-
11130
- case 12:
11131
- url = "https://api.safe.global/tx-service/".concat(chainIdentifier, "/api/v2/safes/").concat(address, "/multisig-transactions?limit=").concat(limit, "&offset=").concat(offset);
11132
- _context6.prev = 13;
11133
- _context6.next = 16;
11134
- return fetch(url, {
11135
- headers: {
11136
- Authorization: "Bearer ".concat(apiKey)
11137
- }
11138
- });
11139
-
11140
- case 16:
11141
- response = _context6.sent;
11142
- if (response.ok) {
11143
- _context6.next = 19;
11144
- break;
11145
- }
11146
- throw new Error("HTTP error! Status: ".concat(response.status));
11147
-
11148
- case 19:
11149
- _context6.next = 21;
11150
- return response.json();
11151
-
11152
- case 21:
11153
- json = _context6.sent;
11154
- if (Array.isArray(json.results)) {
11155
- _context6.next = 24;
11156
- break;
11157
- }
11158
- return _context6.abrupt("return", "INVALID API RESPONSE");
11159
-
11160
- case 24:
11161
- return _context6.abrupt("return", json.results.map((function(_ref2) {
11162
- var confirmations = _ref2.confirmations, dataDecoded = _ref2.dataDecoded, rest = _objectWithoutProperties(_ref2, _excluded);
11163
- return rest;
11164
- })));
11165
-
11166
- case 27:
11167
- _context6.prev = 27;
11168
- _context6.t0 = _context6["catch"](13);
11169
- console.log(_context6.t0);
11170
- return _context6.abrupt("return", "ERROR IN FETCHING");
11171
-
11172
- case 31:
11173
- case "end":
11174
- return _context6.stop();
11175
- }
11176
- }), _callee6, null, [ [ 13, 27 ] ]);
11177
- })));
11178
- return _SAFE.apply(this, arguments);
11179
- }
11180
11086
  var utils = {
11181
11087
  errors: errors,
11182
11088
  symbols: symbols,
@@ -11232,6 +11138,7 @@ function _typeof(o) {
11232
11138
  exports.CHOOSE = CHOOSE;
11233
11139
  exports.CLEAN = CLEAN;
11234
11140
  exports.CODE = CODE;
11141
+ exports.COINGECKO = COINGECKO;
11235
11142
  exports.COLUMN = COLUMN;
11236
11143
  exports.COLUMNS = COLUMNS;
11237
11144
  exports.COMBIN = COMBIN;
@@ -11294,6 +11201,7 @@ function _typeof(o) {
11294
11201
  exports.DVARP = DVARP;
11295
11202
  exports.EDATE = EDATE;
11296
11203
  exports.EFFECT = EFFECT;
11204
+ exports.EOA = EOA;
11297
11205
  exports.EOMONTH = EOMONTH;
11298
11206
  exports.ERF = ERF;
11299
11207
  exports.ERFC = ERFC;
@@ -11336,7 +11244,6 @@ function _typeof(o) {
11336
11244
  exports.GCD = GCD;
11337
11245
  exports.GEOMEAN = GEOMEAN;
11338
11246
  exports.GESTEP = GESTEP;
11339
- exports.GETPRICE = GETPRICE;
11340
11247
  exports.GROWTH = GROWTH;
11341
11248
  exports.HARMEAN = HARMEAN;
11342
11249
  exports.HEX2BIN = HEX2BIN;
@@ -11381,6 +11288,7 @@ function _typeof(o) {
11381
11288
  exports.IPMT = IPMT;
11382
11289
  exports.IRR = IRR;
11383
11290
  exports.ISBLANK = ISBLANK;
11291
+ exports.ISDATE = ISDATE;
11384
11292
  exports.ISERR = ISERR;
11385
11293
  exports.ISERROR = ISERROR;
11386
11294
  exports.ISEVEN = ISEVEN;
@@ -11435,6 +11343,7 @@ function _typeof(o) {
11435
11343
  exports.NEGBINOMDIST = NEGBINOMDIST;
11436
11344
  exports.NETWORKDAYS = NETWORKDAYS;
11437
11345
  exports.NETWORKDAYSINTL = NETWORKDAYSINTL;
11346
+ exports.NETWORKDAYS_INTL = NETWORKDAYS_INTL;
11438
11347
  exports.NOMINAL = NOMINAL;
11439
11348
  exports.NORM = NORM;
11440
11349
  exports.NORMDIST = NORMDIST;
@@ -11451,7 +11360,6 @@ function _typeof(o) {
11451
11360
  exports.OCT2HEX = OCT2HEX;
11452
11361
  exports.ODD = ODD;
11453
11362
  exports.OR = OR;
11454
- exports.OX = OX;
11455
11363
  exports.PDURATION = PDURATION;
11456
11364
  exports.PEARSON = PEARSON;
11457
11365
  exports.PERCENTILE = PERCENTILE;
@@ -11497,7 +11405,6 @@ function _typeof(o) {
11497
11405
  exports.ROWS = ROWS;
11498
11406
  exports.RRI = RRI;
11499
11407
  exports.RSQ = RSQ;
11500
- exports.SAFE = SAFE;
11501
11408
  exports.SEARCH = SEARCH;
11502
11409
  exports.SEC = SEC;
11503
11410
  exports.SECH = SECH;
@@ -11572,6 +11479,7 @@ function _typeof(o) {
11572
11479
  exports.WEIBULLDIST = WEIBULLDIST;
11573
11480
  exports.WORKDAY = WORKDAY;
11574
11481
  exports.WORKDAYINTL = WORKDAYINTL;
11482
+ exports.WORKDAY_INTL = WORKDAY_INTL;
11575
11483
  exports.XIRR = XIRR;
11576
11484
  exports.XNPV = XNPV;
11577
11485
  exports.XOR = XOR;