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

jssm

Package Overview
Dependencies
Maintainers
1
Versions
324
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jssm - npm Package Compare versions

Comparing version 5.79.6 to 5.79.8

34

CHANGELOG.md

@@ -5,3 +5,3 @@ # Changelog

993 merges; 137 releases; Changlogging the last 10 commits; Full changelog at [CHANGELOG.long.md](CHANGELOG.long.md)
994 merges; 137 releases; Changlogging the last 10 commits; Full changelog at [CHANGELOG.long.md](CHANGELOG.long.md)

@@ -26,2 +26,17 @@

## [Untagged] - 7/21/2022 11:56:00 PM
Commit [e91095dc64dacebab0dafe96180219998e0d2891](https://github.com/StoneCypher/jssm/commit/e91095dc64dacebab0dafe96180219998e0d2891)
Author: `John Haugeland <stonecypher@gmail.com>`
* add newline in gha envvar to support twitter action
&nbsp;
&nbsp;
## [Untagged] - 7/21/2022 11:03:43 PM

@@ -178,17 +193,2 @@

* caught a typo
&nbsp;
&nbsp;
## [Untagged] - 7/14/2022 11:26:20 PM
Commit [0a97cd4664b15047b265bd0bf72fd7da79b2d528](https://github.com/StoneCypher/jssm/commit/0a97cd4664b15047b265bd0bf72fd7da79b2d528)
Author: `John Haugeland <stonecypher@gmail.com>`
* Property requirement, fixes StoneCypher/fsl#1041
* caught a typo

@@ -0,4 +1,5 @@

export declare const NegInfinity: number, PosInfinity: number, Epsilon: number, Pi: number, E: number, Root2: number, RootHalf: number, Ln2: number, Ln10: number, Log2E: number, Log10E: number, MaxSafeInt: number, MinSafeInt: number, MaxPosNum: number, MinPosNum: number, Phi = 1.618033988749895, EulerC = 0.5772156649015329;
declare const gviz_shapes: string[];
declare const shapes: string[];
declare const named_colors: string[];
export { gviz_shapes, shapes, named_colors };
export { gviz_shapes, shapes, named_colors, };

@@ -0,1 +1,2 @@

export const NegInfinity = Number.NEGATIVE_INFINITY, PosInfinity = Number.POSITIVE_INFINITY, Epsilon = Number.EPSILON, Pi = Math.PI, E = Math.E, Root2 = Math.SQRT2, RootHalf = Math.SQRT1_2, Ln2 = Math.LN2, Ln10 = Math.LN10, Log2E = Math.LOG2E, Log10E = Math.LOG10E, MaxSafeInt = Number.MAX_SAFE_INTEGER, MinSafeInt = Number.MIN_SAFE_INTEGER, MaxPosNum = Number.MAX_VALUE, MinPosNum = Number.MIN_VALUE, Phi = 1.61803398874989484820, EulerC = 0.57721566490153286060;
const gviz_shapes = [

@@ -93,2 +94,2 @@ "box3d",

];
export { gviz_shapes, shapes, named_colors };
export { gviz_shapes, shapes, named_colors, };

@@ -5,3 +5,4 @@ declare type StateType = string;

import { seq, unique, find_repeated, weighted_rand_select, weighted_sample_select, histograph, weighted_histo_key } from './jssm_util';
import { shapes, gviz_shapes, named_colors } from './jssm_constants';
import * as constants from './jssm_constants';
declare const shapes: string[], gviz_shapes: string[], named_colors: string[];
import { version } from './version';

@@ -979,2 +980,2 @@ /*********

declare function deserialize<mDT>(machine_string: string, ser: JssmSerialization<mDT>): Machine<mDT>;
export { version, transfer_state_properties, Machine, deserialize, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, unique, find_repeated, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, shapes, gviz_shapes, named_colors, is_hook_rejection, is_hook_complex_result, abstract_hook_step };
export { version, transfer_state_properties, Machine, deserialize, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, unique, find_repeated, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, constants, shapes, gviz_shapes, named_colors, is_hook_rejection, is_hook_complex_result, abstract_hook_step };

@@ -1,2 +0,2 @@

const version = "5.79.6";
const version = "5.79.8";
export { version };

@@ -0,4 +1,5 @@

export declare const NegInfinity: number, PosInfinity: number, Epsilon: number, Pi: number, E: number, Root2: number, RootHalf: number, Ln2: number, Ln10: number, Log2E: number, Log10E: number, MaxSafeInt: number, MinSafeInt: number, MaxPosNum: number, MinPosNum: number, Phi = 1.618033988749895, EulerC = 0.5772156649015329;
declare const gviz_shapes: string[];
declare const shapes: string[];
declare const named_colors: string[];
export { gviz_shapes, shapes, named_colors };
export { gviz_shapes, shapes, named_colors, };

@@ -5,3 +5,4 @@ declare type StateType = string;

import { seq, unique, find_repeated, weighted_rand_select, weighted_sample_select, histograph, weighted_histo_key } from './jssm_util';
import { shapes, gviz_shapes, named_colors } from './jssm_constants';
import * as constants from './jssm_constants';
declare const shapes: string[], gviz_shapes: string[], named_colors: string[];
import { version } from './version';

@@ -979,2 +980,2 @@ /*********

declare function deserialize<mDT>(machine_string: string, ser: JssmSerialization<mDT>): Machine<mDT>;
export { version, transfer_state_properties, Machine, deserialize, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, unique, find_repeated, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, shapes, gviz_shapes, named_colors, is_hook_rejection, is_hook_complex_result, abstract_hook_step };
export { version, transfer_state_properties, Machine, deserialize, make, wrap_parse as parse, compile, sm, from, arrow_direction, arrow_left_kind, arrow_right_kind, seq, unique, find_repeated, weighted_rand_select, histograph, weighted_sample_select, weighted_histo_key, constants, shapes, gviz_shapes, named_colors, is_hook_rejection, is_hook_complex_result, abstract_hook_step };
{
"name": "jssm",
"version": "5.79.6",
"version": "5.79.8",
"engines": {

@@ -5,0 +5,0 @@ "node": ">=10.0.0"

@@ -21,3 +21,3 @@ <!--

* Generated for version 5.79.6 at 7/21/2022, 11:55:41 PM
* Generated for version 5.79.8 at 7/22/2022, 12:20:39 AM

@@ -33,3 +33,3 @@ -->

***4,763 tests*** run 5,654 times. 4,754 specs with 100.0% coverage, 9 fuzz tests with 5.4% coverage. With 1,942 lines, that's about 2.5 tests per line, or 2.9 generated tests per line.
***4,763 tests*** run 5,654 times. 4,754 specs with 100.0% coverage, 9 fuzz tests with 5.4% coverage. With 1,965 lines, that's about 2.4 tests per line, or 2.9 generated tests per line.

@@ -36,0 +36,0 @@ ***Meet your new state machine library.***

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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