mirror of
https://github.com/hedgedoc/hedgedoc.git
synced 2024-11-29 21:44:37 -05:00
9 lines
200 B
JavaScript
9 lines
200 B
JavaScript
|
'use strict'
|
||
|
|
||
|
exports.toBooleanConfig = function toBooleanConfig (configValue) {
|
||
|
if (configValue && typeof configValue === 'string') {
|
||
|
return (configValue === 'true')
|
||
|
}
|
||
|
return configValue
|
||
|
}
|