Comparing version 3.0.20 to 3.0.21
11
dot.js
@@ -203,5 +203,10 @@ /*global Map Promise Set*/ | ||
} else { | ||
k.arr = k.arr.concat( | ||
typeof arg === strType ? arg.split(period) : arg | ||
) | ||
var isArr = Array.isArray(arg), | ||
isStr = typeof arg === strType | ||
if (isArr || isStr) { | ||
k.arr = k.arr.concat( | ||
isStr ? arg.split(period) : arg | ||
) | ||
} | ||
} | ||
@@ -208,0 +213,0 @@ } |
{ | ||
"name": "dot-event", | ||
"version": "3.0.20", | ||
"version": "3.0.21", | ||
"description": "Powerful event emitter", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
12021
373