Files
2026-05-04 21:39:59 +02:00

8 lines
295 B
JavaScript

export function Stub(meta, name, description, module_name, function_name) {
return function stub() {
throw new Error(`The feature "${name}" of "${meta.url}" is not enabled. Enable it by calling "${function_name}(${this.name})" imported from "${module_name}"`); //TODO - specific error
}
}