Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/axis.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@

var types = 'Array Object String Date RegExp Function Boolean Number Null Undefined'.split(' ');

function type() {
return Object.prototype.toString.call(this).slice(8, -1);
axis.type = function(item) {
return Object.prototype.toString.call(item).slice(8, -1);
}

for (var i = types.length; i--;) {
axis['is' + types[i]] = (function (self) {
return function (elem) {
return type.call(elem) === self;
return axis.type(elem) === self;
};
})(types[i]);
}
Expand Down