Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

tina

Package Overview
Dependencies
Maintainers
3
Versions
41
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tina - npm Package Compare versions

Comparing version 0.3.11 to 0.3.12

2

package.json
{
"name": "tina",
"version": "0.3.11",
"version": "0.3.12",
"description": "Tweening and INterpolations for Animation",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -43,3 +43,3 @@

function updateE(object, t) {
t = this.easing(t, this.easingParams);
t = this.easing(t, this.easingParam);
var p = this.prop;

@@ -55,3 +55,3 @@ var now = this.from[p] * (1 - t) + this.to[p] * t;

var q = this.props;
t = this.easing(t, this.easingParams);
t = this.easing(t, this.easingParam);
for (var i = 0; i < q.length; i += 1) {

@@ -69,3 +69,3 @@ var p = q[i];

var p = this.prop;
var now = this.interps[p](this.easing(t, this.easingParams), this.from[p], this.to[p], this.interpParams[p]);
var now = this.interps[p](this.easing(t, this.easingParam), this.from[p], this.to[p], this.interpParams[p]);
object[p] = object[p] + (now - this.prev);

@@ -80,3 +80,3 @@ this.prev = now;

var q = this.props;
t = this.easing(t, this.easingParams);
t = this.easing(t, this.easingParam);
for (var i = 0; i < q.length; i += 1) {

@@ -83,0 +83,0 @@ var p = q[i];

SocketSocket SOC 2 Logo

Product

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc