bindall-standalone
Advanced tools
Comparing version 1.0.2 to 1.0.3
@@ -8,5 +8,6 @@ 'use strict'; | ||
var toString = Object.prototype.toString; | ||
var hasOwnProperty = Object.prototype.hasOwnProperty; | ||
for (var method in object) { | ||
if(object.hasOwnProperty(method)) { | ||
if(hasOwnProperty.call(object, method)) { | ||
if(typeof object[method] == 'function' && toString.call(object[method]) == "[object Function]") { | ||
@@ -13,0 +14,0 @@ functions.push(method); |
{ | ||
"name": "bindall-standalone", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "Standalone version of underscore's `_.bindAll()` function for IE9+ browsers.", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
5759
80