Viewing old revision of Module:Utils
You are viewing an old revision of this page from 1/22/2026, 10:58:24 AM.
View latest versionNo documentation subpage (
/doc) found for this module.exports.resolveArgs = function(args) {
if (typeof args == "string") return { "0": args };
return args;
}
exports.isModuleEmpty = function(mod) {
return !mod || Object.keys(mod).length === 0;
}