1
0
Fork 1
mirror of https://github.com/mastodon/mastodon.git synced 2025-01-24 14:37:20 +00:00
mastodon/app/javascript/flavours/glitch/util/js_helpers.js

6 lines
242 B
JavaScript
Raw Normal View History

2018-01-05 18:23:06 -08:00
// 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;
}