@visactor/vutils 1.0.18 → 1.0.19
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/common/ascending.js +2 -1
- package/cjs/common/extent.js +1 -2
- package/cjs/common/index.js +2 -1
- package/cjs/common/isNull.js +1 -2
- package/cjs/common/isPlainObject.js +2 -1
- package/cjs/common/isShallowEqual.js +1 -1
- package/cjs/common/isString.js +1 -1
- package/cjs/common/isType.js +1 -1
- package/cjs/common/isUndefined.js +1 -1
- package/cjs/common/isValid.js +1 -1
- package/cjs/data-structure/bounds.js +1 -1
- package/cjs/data-structure/hashTable.js +1 -2
- package/cjs/data-structure/index.js +1 -1
- package/cjs/data-structure/matrix.js +1 -1
- package/cjs/data-structure/point.js +1 -1
- package/es/common/ascending.js +2 -1
- package/es/common/extent.js +1 -2
- package/es/common/index.js +2 -1
- package/es/common/isNull.js +1 -2
- package/es/common/isPlainObject.js +2 -1
- package/es/common/isShallowEqual.js +1 -1
- package/es/common/isString.js +1 -1
- package/es/common/isType.js +1 -1
- package/es/common/isUndefined.js +1 -1
- package/es/common/isValid.js +1 -1
- package/es/data-structure/bounds.js +1 -1
- package/es/data-structure/hashTable.js +1 -2
- package/es/data-structure/index.js +1 -1
- package/es/data-structure/matrix.js +1 -1
- package/es/data-structure/point.js +1 -1
- package/package.json +2 -2
package/cjs/common/ascending.js
CHANGED
package/cjs/common/extent.js
CHANGED
package/cjs/common/index.js
CHANGED
|
@@ -524,4 +524,5 @@ __exportStar(require("./toPercent"), exports), __exportStar(require("./zero"), e
|
|
|
524
524
|
__exportStar(require("./extent"), exports), __exportStar(require("./regression-linear"), exports),
|
|
525
525
|
__exportStar(require("./regression-logistic"), exports), __exportStar(require("./regression-lowess"), exports),
|
|
526
526
|
__exportStar(require("./regression-polynomial"), exports), __exportStar(require("./kde"), exports),
|
|
527
|
-
__exportStar(require("./ecdf"), exports);
|
|
527
|
+
__exportStar(require("./ecdf"), exports);
|
|
528
|
+
//# sourceMappingURL=index.js.map
|
package/cjs/common/isNull.js
CHANGED
package/cjs/common/isString.js
CHANGED
package/cjs/common/isType.js
CHANGED
package/cjs/common/isValid.js
CHANGED
|
@@ -19,4 +19,4 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
19
19
|
value: !0
|
|
20
20
|
}), __exportStar(require("./hashTable"), exports), __exportStar(require("./point"), exports),
|
|
21
21
|
__exportStar(require("./bounds"), exports), __exportStar(require("./matrix"), exports);
|
|
22
|
-
//# sourceMappingURL=index.js.map
|
|
22
|
+
//# sourceMappingURL=index.js.map
|
package/es/common/ascending.js
CHANGED
package/es/common/extent.js
CHANGED
package/es/common/index.js
CHANGED
package/es/common/isNull.js
CHANGED
package/es/common/isString.js
CHANGED
package/es/common/isType.js
CHANGED
package/es/common/isUndefined.js
CHANGED
package/es/common/isValid.js
CHANGED
|
@@ -103,4 +103,4 @@ export function normalTransform(out, origin, x, y, scaleX, scaleY, angle, rotate
|
|
|
103
103
|
out.e = oe + oa * rotateCenterX + oc * rotateCenterY - a1 * offsetX - c1 * offsetY,
|
|
104
104
|
out.f = of + ob * rotateCenterX + od * rotateCenterY - b1 * offsetX - d1 * offsetY;
|
|
105
105
|
}
|
|
106
|
-
//# sourceMappingURL=matrix.js.map
|
|
106
|
+
//# sourceMappingURL=matrix.js.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@visactor/vutils",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.19",
|
|
4
4
|
"main": "cjs/index.js",
|
|
5
5
|
"module": "es/index.js",
|
|
6
6
|
"types": "es/index.d.ts",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"typescript": "4.9.5",
|
|
32
32
|
"@types/node": "*",
|
|
33
33
|
"@internal/bundler": "0.0.1",
|
|
34
|
-
"@internal/eslint-config": "0.0.1",
|
|
35
34
|
"@internal/ts-config": "0.0.1",
|
|
35
|
+
"@internal/eslint-config": "0.0.1",
|
|
36
36
|
"@internal/jest-config": "0.0.1"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|