module
.
require(module[, options])
const myModule = firost.require('./path/to/module.js');
This is similar to the builtin require
, but having a wrapper proves itself
useful in tests when you cannot mock the builtin require
.
Set options.forceReload: true
to force reloading the module, bypassing the
cache.
const updatedModule = firost.require('./path/to/module.js', {
forceReload: true,
});