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.
1 2 3 4 5 6 | app.disabled( 'trust proxy' ); // => true app.enable( 'trust proxy' ); app.disabled( 'trust proxy' ); // => false |
Please login to continue.