diff --git a/src/common.js b/src/common.js index a915384..d741952 100644 --- a/src/common.js +++ b/src/common.js @@ -21,7 +21,7 @@ export default function($){ each(cb, thisArg) { var idx = -1, len = this.length; - while (++idx < len) cb.call(thisArg, this[idx], idx, this) + while (++idx < len) cb.call(thisArg || this, this[idx], idx, this) return this },