Utilities
The framework comes with several useful predefined util functions that you can use in your app.
src/root.test.ts
import { $ } from '@entropy/utils';
Docs • Entropy – Modern and Declarative Deno Framework deno run -A some_module.ts`; // Shell command running utility
src/root.test.ts
import { Utils } from '@entropy/utils'; const range = Utils.range(5, 8); // Generated range array: [5, 6, 7, 8] const merged = Utils.mergeDeep(a, b); // Deeply merge two objects