( key: Property['key'] | string, value: Property['value'], )
| 671 | } |
| 672 | |
| 673 | export function createObjectProperty( |
| 674 | key: Property['key'] | string, |
| 675 | value: Property['value'], |
| 676 | ): Property { |
| 677 | return { |
| 678 | type: NodeTypes.JS_PROPERTY, |
| 679 | loc: locStub, |
| 680 | key: isString(key) ? createSimpleExpression(key, true) : key, |
| 681 | value, |
| 682 | } |
| 683 | } |
| 684 | |
| 685 | export function createSimpleExpression( |
| 686 | content: SimpleExpressionNode['content'], |