Skip to content

Commit

Permalink
remove extraneous function
Browse files Browse the repository at this point in the history
  • Loading branch information
ericz committed Jan 16, 2013
1 parent d753f19 commit 58dc9ee
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions lib/util.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,6 @@ var util = {
// if node
isNode: true,
// end node
removeListener: function(obj, type, fn) {
if (!obj || !type || !fn) {
return;
}
if (obj.removeListener) {
obj.removeListener(type, fn);
} else {
obj.removeEventListener(type, fn);
}
},
setZeroTimeout: (function(global) {
// if node

Expand Down

0 comments on commit 58dc9ee

Please sign in to comment.