1var boolString = function(string) { 2 return ['true', 'yes', 'enabled', 'enable', 'valid', 'on', '1'].includes(string.toLowerCase()); 3} 4 5if (typeof module !== 'undefined' && module.exports) { 6 module.exports = boolString; 7} 8