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

ag-timemachine

Package Overview
Dependencies
Maintainers
1
Versions
97
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ag-timemachine - npm Package Compare versions

Comparing version 1.0.78 to 1.0.79

2

package.json
{
"name": "ag-timemachine",
"version": "1.0.78",
"version": "1.0.79",
"description": "",

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

@@ -90,2 +90,4 @@ import { WebApiProxy, WebStateProxy } from "ag-remote/AgRemoteTypes";

slowdown(): void;
nextFrame(): void;
preFrame(): void;
forward(): void;

@@ -92,0 +94,0 @@ backward(): void;

@@ -105,2 +105,18 @@ "use strict";

};
AgTmPlayer.prototype.nextFrame = function () {
var _this = this;
var next = this.frames.find(function (f) { return f.getTime() > _this.target.getTime(); });
if (!next)
return;
this.buffer.target.value = next;
this.align();
};
AgTmPlayer.prototype.preFrame = function () {
var _this = this;
var pre = this.frames.reverse().find(function (f) { return f.getTime() < _this.target.getTime(); });
if (!pre)
return;
this.buffer.target.value = pre;
this.align();
};
AgTmPlayer.prototype.forward = function () {

@@ -107,0 +123,0 @@ var span = 5 * 1000;

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