7 lines
193 B
JavaScript
7 lines
193 B
JavaScript
// util.js
|
|
|
|
// private
|
|
// takes a string, makes it boolean (true if the string is true, false otherwise)
|
|
exports.parseBool = function parseBool(str) {
|
|
return str.toLowerCase() === 'true';
|
|
};
|