| D | objects.js | 249 var options = {zero: 0, one: 1, empty: '', nan: NaN, nothing: null}; property 257 _.defaults(options, {empty: 'full'}, {nan: 'nan'}, {word: 'word'}, {word: 'dog'}); property 259 assert.ok(_.isNaN(options.nan), "NaN isn't overridden");
|