Files
427e7578-d7bf-49c8-aee9-2dd…/yjs-poll/node_modules/lib0/conditions.js

14 lines
218 B
JavaScript

/**
* Often used conditions.
*
* @module conditions
*/
/**
* @template T
* @param {T|null|undefined} v
* @return {T|null}
*/
/* c8 ignore next */
export const undefinedToNull = v => v === undefined ? null : v