UNPKG

ractive

Version:

Next-generation DOM manipulation

12 lines (9 loc) 185 B
export default function ( a, b ) { if ( a === null && b === null ) { return true; } if ( typeof a === 'object' || typeof b === 'object' ) { return false; } return a === b; }