mirror of
https://github.com/svg/svgo.git
synced 2025-07-31 07:44:22 +03:00
Fix ts
This commit is contained in:
@ -122,6 +122,7 @@ const applyTransforms = (elem, pathData, params) => {
|
||||
|
||||
return;
|
||||
};
|
||||
exports.applyTransforms = applyTransforms;
|
||||
|
||||
const transformAbsolutePoint = (matrix, x, y) => {
|
||||
const newX = matrix[0] * x + matrix[2] * y + matrix[4];
|
||||
@ -325,4 +326,3 @@ const applyMatrixToPathData = (pathData, matrix) => {
|
||||
pathItem.data = args;
|
||||
}
|
||||
};
|
||||
exports.applyTransforms = applyTransforms;
|
||||
|
Reference in New Issue
Block a user