~cytrogen/masto-fe

ref: ea1f9b4223baae32e6933c5bef0d8d3200fe4f2e masto-fe/app/javascript/flavours/glitch/utils/js_helpers.js -rw-r--r-- 242 bytes
ea1f9b42 — fusagiko / takayamaki [Glitch] Rename Image component to ServerHeroImage 2 years ago
                                                                                
1
2
3
4
5
//  This function returns the new value unless it is `null` or
//  `undefined`, in which case it returns the old one.
export function overwrite (oldVal, newVal) {
  return newVal === null || typeof newVal === 'undefined' ? oldVal : newVal;
}