UNPKG

e-lado

Version:

[![CircleCI](https://circleci.com/gh/sharetribe/sharetribe/tree/master.svg?style=svg)](https://circleci.com/gh/sharetribe/sharetribe/tree/master) [![Dependency Status](https://gemnasium.com/sharetribe/sharetribe.png)](https://gemnasium.com/sharetribe/shar

34 lines (31 loc) 641 B
import JSXExpressionContainerMock from './JSXExpressionContainerMock'; import toAST from 'to-ast'; export default function JSXAttributeMock ( prop, value, isExpressionContainer = false ) { let astValue; if (value && value.type !== undefined) { astValue = value; } else { astValue = toAST(value); } let attributeValue = astValue; if ( isExpressionContainer || astValue.type !== 'Literal' ) { attributeValue = JSXExpressionContainerMock( astValue ); } return { type: 'JSXAttribute', name: { type: 'JSXIdentifier', name: prop, }, value: attributeValue, }; }