@ricsam/formula-engine 0.0.1 → 0.0.3
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.
- package/dist/cjs/lib.cjs +56 -0
- package/dist/cjs/lib.cjs.map +10 -0
- package/dist/cjs/package.json +1 -1
- package/dist/mjs/lib.mjs +10 -0
- package/dist/mjs/lib.mjs.map +10 -0
- package/dist/mjs/package.json +1 -1
- package/dist/types/lib.d.ts +3 -0
- package/package.json +1 -1
package/dist/cjs/lib.cjs
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
var __defProp = Object.defineProperty;
|
|
2
|
+
var __getOwnPropNames = Object.getOwnPropertyNames;
|
|
3
|
+
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
4
|
+
var __hasOwnProp = Object.prototype.hasOwnProperty;
|
|
5
|
+
var __reExport = (target, mod, secondTarget) => {
|
|
6
|
+
for (let key of __getOwnPropNames(mod))
|
|
7
|
+
if (!__hasOwnProp.call(target, key) && key !== "default")
|
|
8
|
+
__defProp(target, key, {
|
|
9
|
+
get: () => mod[key],
|
|
10
|
+
enumerable: true
|
|
11
|
+
});
|
|
12
|
+
if (secondTarget) {
|
|
13
|
+
for (let key of __getOwnPropNames(mod))
|
|
14
|
+
if (!__hasOwnProp.call(secondTarget, key) && key !== "default")
|
|
15
|
+
__defProp(secondTarget, key, {
|
|
16
|
+
get: () => mod[key],
|
|
17
|
+
enumerable: true
|
|
18
|
+
});
|
|
19
|
+
return secondTarget;
|
|
20
|
+
}
|
|
21
|
+
};
|
|
22
|
+
var __moduleCache = /* @__PURE__ */ new WeakMap;
|
|
23
|
+
var __toCommonJS = (from) => {
|
|
24
|
+
var entry = __moduleCache.get(from), desc;
|
|
25
|
+
if (entry)
|
|
26
|
+
return entry;
|
|
27
|
+
entry = __defProp({}, "__esModule", { value: true });
|
|
28
|
+
if (from && typeof from === "object" || typeof from === "function")
|
|
29
|
+
__getOwnPropNames(from).map((key) => !__hasOwnProp.call(entry, key) && __defProp(entry, key, {
|
|
30
|
+
get: () => from[key],
|
|
31
|
+
enumerable: !(desc = __getOwnPropDesc(from, key)) || desc.enumerable
|
|
32
|
+
}));
|
|
33
|
+
__moduleCache.set(from, entry);
|
|
34
|
+
return entry;
|
|
35
|
+
};
|
|
36
|
+
var __export = (target, all) => {
|
|
37
|
+
for (var name in all)
|
|
38
|
+
__defProp(target, name, {
|
|
39
|
+
get: all[name],
|
|
40
|
+
enumerable: true,
|
|
41
|
+
configurable: true,
|
|
42
|
+
set: (newValue) => all[name] = () => newValue
|
|
43
|
+
});
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
// src/lib.ts
|
|
47
|
+
var exports_lib = {};
|
|
48
|
+
__export(exports_lib, {
|
|
49
|
+
FormulaEngine: () => import_engine.FormulaEngine
|
|
50
|
+
});
|
|
51
|
+
module.exports = __toCommonJS(exports_lib);
|
|
52
|
+
var import_engine = require("./core/engine.cjs");
|
|
53
|
+
__reExport(exports_lib, require("./core/types.cjs"), module.exports);
|
|
54
|
+
__reExport(exports_lib, require("./core/utils.cjs"), module.exports);
|
|
55
|
+
|
|
56
|
+
//# debugId=BA9B5BC75C7422B164756E2164756E21
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/lib.ts"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"export { FormulaEngine } from \"./core/engine.cjs\";\nexport * from \"./core/types.cjs\";\nexport * from \"./core/utils.cjs\";\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": ";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAA8B,IAA9B;AACA;AACA;",
|
|
8
|
+
"debugId": "BA9B5BC75C7422B164756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
package/dist/cjs/package.json
CHANGED
package/dist/mjs/lib.mjs
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../../src/lib.ts"],
|
|
4
|
+
"sourcesContent": [
|
|
5
|
+
"export { FormulaEngine } from \"./core/engine.mjs\";\nexport * from \"./core/types.mjs\";\nexport * from \"./core/utils.mjs\";\n"
|
|
6
|
+
],
|
|
7
|
+
"mappings": ";AAAA;AAAA;AACA;AACA;",
|
|
8
|
+
"debugId": "BABF7A1B9B38C02664756E2164756E21",
|
|
9
|
+
"names": []
|
|
10
|
+
}
|
package/dist/mjs/package.json
CHANGED