Skip to content

Commit

Permalink
Add a new utility called ‘isUndefined’
Browse files Browse the repository at this point in the history
  • Loading branch information
František Hába committed Mar 12, 2012
1 parent 131ebb6 commit 49448c0
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/utils/isUndefined.js
@@ -0,0 +1,8 @@
/**
* IsUndefined
*
* @param {object} input
*/
var isUndefined = function(input) {
return typeof input === 'undefined';
};

0 comments on commit 49448c0

Please sign in to comment.