UNPKG

jssm

Version:

A Javascript finite state machine (FSM) with a terse DSL and a simple API. Most FSMs are one-liners. Fast, easy, powerful, well tested, typed with TypeScript, and visualizations. MIT License.

15 lines (14 loc) 643 B
/** * The published semantic version of the jssm package this build was cut from. * Mirrored from `package.json` by `src/buildjs/makever.cjs` at build time. * Useful for runtime diagnostics and for embedding in serialized machine * snapshots so that deserializers can detect version-skew. */ declare const version: string; /** * The Unix epoch timestamp (in milliseconds) at which this build was produced, * written by `src/buildjs/makever.cjs`. Useful for distinguishing builds * with the same `version` string during development, and for diagnostic logs. */ declare const build_time: number; export { version, build_time };