The Flow module contains functions and sub-modules controlling execution and working with time.
// 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" // And within your HTML's <HEAD> </HEAD> block:// <script type="importmap">{ "imports": { "ixfx/": "/ixfx/" } } </script>
// Whole moduleimport * as Flow from "ixfx/dist/flow.js" // Single functionimport { repeat } from "ixfx/dist/flow.js" // One of several modulesimport { Flow, Modulation, Data } from "ixfx/dist/bundle.js"
// Whole moduleimport * as Flow from "https://unpkg.com/ixfx/dist/flow.js"; // Single functionimport { repeat } from "https://unpkg.com/ixfx/dist/flow.js"; // One of several modulesimport { Flow, Modulation, Data } from "https://unpkg.com/ixfx/dist/bundle.js"