New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

@typinghare/fsm

Package Overview
Dependencies
Maintainers
0
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@typinghare/fsm - npm Package Compare versions

Comparing version
0.0.1
to
0.0.2
+1
-1
package.json
{
"name": "@typinghare/fsm",
"description": "Simple finite state machine.",
"version": "0.0.1",
"version": "0.0.2",
"type": "module",

@@ -6,0 +6,0 @@ "main": "dist/index.js",

@@ -68,2 +68,17 @@ // Generated by dts-bundle-generator v9.5.1

abstract transition(context: Context<any>): State;
/**
* Gets the state (class) of this state object.
*
* @returns The state of this state object.
*/
getClass(): StateClass<any>;
/**
* Checks if the state (class) of this state object is the same as the
* given state class.
*
* @param stateClass
* @returns True if the state of this object is the same as the given state
* class; false otherwise.
*/
is(stateClass: StateClass<any>): boolean;
}

@@ -70,0 +85,0 @@ /**