New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@randajan/jet-core

Package Overview
Dependencies
Maintainers
1
Versions
79
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@randajan/jet-core - npm Package Compare versions

Comparing version 3.4.3 to 3.4.4

10

dist/extra/Ticker.js

@@ -11,3 +11,3 @@ import {

}
constructor({ onTick, onInit, onStart, onStop }) {
constructor({ onTick, onInit, onStart, onStop, interval }) {
onInit = jet_default.isRunnable(onInit) ? onInit : (_) => {

@@ -23,3 +23,3 @@ };

state: false,
interval: 1e3,
interval: 0,
count: 0,

@@ -33,3 +33,6 @@ intervalId: null

_p.count++;
await onTick(this);
try {
await onTick(this);
} catch (err) {
}
_p.intervalId = setTimeout(tick, _p.interval);

@@ -70,2 +73,3 @@ };

virtual(this, "count", (_) => _p.count);
this.setInterval(interval);
}

@@ -72,0 +76,0 @@ start() {

{
"name": "@randajan/jet-core",
"version": "3.4.3",
"version": "3.4.4",
"description": "Ecosystem of types and related usefull tools.",

@@ -5,0 +5,0 @@ "repository": "randajan/jet-core",

Sorry, the diff of this file is not supported yet

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