UNPKG
brazilianutils
Version:
latest (0.0.3)
0.0.3
0.0.2
0.0.1
Lots of utilities for Node.js
github.com/giovannifersan/brazilianutils
giovannifersan/brazilianutils
brazilianutils
/
lib
/
booleanUtils.js
7 lines
(5 loc)
•
158 B
JavaScript
View Raw
1
2
3
4
5
6
7
'use strict'
;
module
.
exports
.
__name
=
'Boolean'
;
module
.
exports
.
isTrue
=
function
(
value
) {
return
[
'on'
,
'true'
,
'yes'
,
1
,
true
].
indexOf
(value) > -
1
; };