Module
What Is Module?
Module is simply a ready-to-use makeModule instance with default options:
export const Module = makeModule({});By default, Module has the following parameters:
cache = 'run'The results are cached only for the duration of a single call (see Caching).lazy = trueModules are computed only when first accessed (see Lazy Initialization).transformInput = withModuleNameAutomatically adds a property to the dependencies object:
which lets any module function retrieve its own name (see Transform Input/Output).