Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
jajbshjahavahh
GitHub Repository: jajbshjahavahh/Gojo-Satoru
Path: blob/master/node_modules/boolstring/index.js
2591 views
1
var boolString = function(string) {
2
return ['true', 'yes', 'enabled', 'enable', 'valid', 'on', '1'].includes(string.toLowerCase());
3
}
4
5
if (typeof module !== 'undefined' && module.exports) {
6
module.exports = boolString;
7
}
8