Skip to content

Latest commit

 

History

History

PropOr

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

PropOr

A helper to safety get object's prop.

Usage

import type {PropOr} from 'flown'

/**
 * 'test'
 */
type A = PropOr<{ a: 'test' }, 'a', null>

/**
 * null
 */
type B = PropOr<{ a: 'test' }, 'b', null>