wao 0.1.1 → 0.1.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/cjs/index.js +6 -0
- package/esm/index.js +2 -1
- package/package.json +11 -1
- package/test/index.js +2 -1
- package/test/package.json +11 -1
package/cjs/index.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
|
|
3
|
+
function _typeof(o) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, _typeof(o); }
|
|
3
4
|
Object.defineProperty(exports, "__esModule", {
|
|
4
5
|
value: true
|
|
5
6
|
});
|
|
@@ -15,6 +16,11 @@ Object.defineProperty(exports, "AR", {
|
|
|
15
16
|
return _ar["default"];
|
|
16
17
|
}
|
|
17
18
|
});
|
|
19
|
+
exports.utils = void 0;
|
|
18
20
|
var _ar = _interopRequireDefault(require("./ar.js"));
|
|
19
21
|
var _ao = _interopRequireDefault(require("./ao.js"));
|
|
22
|
+
var utils = _interopRequireWildcard(require("./utils.js"));
|
|
23
|
+
exports.utils = utils;
|
|
24
|
+
function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(e) { return e ? t : r; })(e); }
|
|
25
|
+
function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != _typeof(e) && "function" != typeof e) return { "default": e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n["default"] = e, t && t.set(e, n), n; }
|
|
20
26
|
function _interopRequireDefault(e) { return e && e.__esModule ? e : { "default": e }; }
|
package/esm/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wao",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "cjs/index.js",
|
|
6
6
|
"module": "esm/index.js",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"require": "./cjs/index.js",
|
|
13
|
+
"import": "./esm/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./utils": {
|
|
16
|
+
"require": "./cjs/utils.js",
|
|
17
|
+
"import": "./esm/utils.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
10
20
|
"author": "",
|
|
11
21
|
"license": "MIT",
|
|
12
22
|
"dependencies": {
|
package/test/index.js
CHANGED
package/test/package.json
CHANGED
|
@@ -1,12 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "wao",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "index.js",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=20.0.0"
|
|
9
9
|
},
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"require": "./cjs/index.js",
|
|
13
|
+
"import": "./esm/index.js"
|
|
14
|
+
},
|
|
15
|
+
"./utils": {
|
|
16
|
+
"require": "./cjs/utils.js",
|
|
17
|
+
"import": "./esm/utils.js"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
10
20
|
"author": "",
|
|
11
21
|
"license": "MIT",
|
|
12
22
|
"dependencies": {
|