Flow
The Flow module contains functions and sub-modules controlling execution and working with time.
Importing
Section titled “Importing”// Whole moduleimport * as Flow from "@ixfx/flow.js"
// Single functionimport { repeat } from "@ixfx/flow.js"
// And within your HTML's <HEAD> </HEAD> block:<script type="importmap">{ "imports": { "@ixfx":"/ixfx/core.js", "@ixfx/": "/ixfx/" } }</script>// Whole moduleimport * as Flow from "@ixfx/flow"
// Single functionimport { repeat } from "@ixfx/flow"// Single module from the bundleimport * as Flow from "https://unpkg.com/ixfx/dist/flow.js"
// Single functionimport { repeat } from "https://unpkg.com/ixfx/dist/flow.js"