function coerceToTableJSFBTTreeLeaf()

in packages/babel-plugin-fbt/src/JSFbtUtil.js [24:34]


function coerceToTableJSFBTTreeLeaf(
  value: $Shape<TableJSFBTTreeLeaf>,
): ?TableJSFBTTreeLeaf {
  return value &&
    typeof value === 'object' &&
    typeof value.desc === 'string' &&
    typeof value.text === 'string' &&
    (typeof value.tokenAliases === 'object' || value.tokenAliases == null)
    ? (value: TableJSFBTTreeLeaf)
    : null;
}