Socket
Socket
Sign inDemoInstall

tween.js

Package Overview
Dependencies
0
Maintainers
1
Versions
18
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 16.3.3 to 16.3.4

2

package.json
{
"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 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc