Skip to content

Commit

Permalink
change == to ===
Browse files Browse the repository at this point in the history
  • Loading branch information
xtx1130 committed Jul 12, 2017
1 parent d5c0a06 commit 82e892a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deps/isAsyncFunc.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@
*/
'use strict';
exports = module.exports = func => {
return func.constructor.name == 'AsyncFunction';
return func.constructor.name === 'AsyncFunction';
}

0 comments on commit 82e892a

Please sign in to comment.