aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/robertkrimen/otto/value_boolean.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/robertkrimen/otto/value_boolean.go')
-rw-r--r--vendor/github.com/robertkrimen/otto/value_boolean.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/vendor/github.com/robertkrimen/otto/value_boolean.go b/vendor/github.com/robertkrimen/otto/value_boolean.go
index 3040f4163..b631507b0 100644
--- a/vendor/github.com/robertkrimen/otto/value_boolean.go
+++ b/vendor/github.com/robertkrimen/otto/value_boolean.go
@@ -4,6 +4,7 @@ import (
"fmt"
"math"
"reflect"
+ "unicode/utf16"
)
func (value Value) bool() bool {
@@ -32,6 +33,8 @@ func (value Value) bool() bool {
return true
case string:
return 0 != len(value)
+ case []uint16:
+ return 0 != len(utf16.Decode(value))
}
if value.IsObject() {
return true