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 } }