(to, from)
| 114 | specPath.properties.find(createFindPropFn(GET_INITIAL_STATE_FIELD)); |
| 115 | |
| 116 | const withComments = (to, from) => { |
| 117 | to.comments = from.comments; |
| 118 | return to; |
| 119 | }; |
| 120 | |
| 121 | const isPrimExpression = node => ( |
| 122 | node.type === 'Literal' || ( // NOTE this might change in babylon v6 |
no outgoing calls
no test coverage detected