Changeset 197 for trunk/common

Show
Ignore:
Timestamp:
05/21/07 20:09:31 (3 years ago)
Author:
ddavis
Message:

use negative absolute equality instead of ternary operator for defined checks

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/common/Core.js

    r195 r197  
    3939 
    4040defined = function( x ) { 
    41     return x === undefined ? false : true; 
     41    return x !== undefined; 
    4242}; 
    4343