Comparing version 16.3.3 to 16.3.4
{ | ||
"name": "tween.js", | ||
"description": "Super simple, fast and easy to use tweening engine which incorporates optimised Robert Penner's equations.", | ||
"version": "16.3.3", | ||
"version": "16.3.4", | ||
"main": "src/Tween.js", | ||
@@ -6,0 +6,0 @@ "homepage": "https://github.com/tweenjs/tween.js", |
@@ -318,3 +318,8 @@ /** | ||
if (typeof (end) === 'string') { | ||
end = start + parseFloat(end, 10); | ||
if (end.startsWith('+') || end.startsWith('-')) { | ||
end = start + parseFloat(end, 10); | ||
} else { | ||
end = parseFloat(end, 10); | ||
} | ||
} | ||
@@ -321,0 +326,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23557
552