util.toBool = function(input) {
        if (typeof input === 'string') {
            return input.toLowerCase() === 'true';
        }
        return !!input;