Skip to content

Commit 38f41b8

Browse files
author
David De Sloovere
committed
add missing ;
1 parent b345b37 commit 38f41b8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/globalize.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,8 +358,8 @@ isArray = Array.isArray || function( obj ) {
358358
};
359359

360360
isFunction = function( obj ) {
361-
return Object.prototype.toString.call( obj ) === "[object Function]"
362-
}
361+
return Object.prototype.toString.call( obj ) === "[object Function]";
362+
};
363363

364364
isObject = function( obj ) {
365365
return Object.prototype.toString.call( obj ) === "[object Object]";

0 commit comments

Comments
 (0)