Skip to content

Instantly share code, notes, and snippets.

@gladkih
Created March 12, 2015 08:50
Show Gist options
  • Select an option

  • Save gladkih/e0c68b0910b2a0c71fe5 to your computer and use it in GitHub Desktop.

Select an option

Save gladkih/e0c68b0910b2a0c71fe5 to your computer and use it in GitHub Desktop.

Revisions

  1. gladkih created this gist Mar 12, 2015.
    3 changes: 3 additions & 0 deletions realIsNan.js
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,3 @@
    var realIsNaN = function(value) {
    return typeof value === 'number' && isNaN(value);
    };