app.disabled(name)
Returns true if the Boolean setting name is disabled (false), where name is one of the properties from the app settings table.
app.disabled('trust proxy');
// => true
app.enable('trust proxy');
app.disabled('trust proxy');
// => false
Please login to continue.