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"
// Single functionimport { repeat } from "@ixfx/flow"
// One of several modulesimport { Flow, Modulation, Data } from "@ixfx"
// And within your HTML's <HEAD> </HEAD> block:<script type="importmap">{ "imports": { "@ixfx":"/ixfx/index.js", "@ixfx/": "/ixfx/" } }</script>
// Whole moduleimport * as Flow from "@ixfx/flow.js"
// Single functionimport { repeat } from "@ixfx/flow.js"
// One of several modulesimport { Flow, Modulation, Data } from "@ixfx/bundle.js"
// Single module from the bundleimport { Flow } from "https://unpkg.com/@ixfx/bundle"
// Single moduleimport * as Flow from "https://unpkg.com/@ixfx/flow/bundle"
// One of several modulesimport { Flow, Modulation, Data } from "https://unpkg.com/@ixfx/bundle"