(children, options)
| 652 | } |
| 653 | |
| 654 | function Hyperlink(children, options) { |
| 655 | return { |
| 656 | type: types.hyperlink, |
| 657 | children: children, |
| 658 | href: options.href, |
| 659 | anchor: options.anchor, |
| 660 | targetFrame: options.targetFrame |
| 661 | }; |
| 662 | } |
| 663 | |
| 664 | function NoteReference(options) { |
| 665 | return { |
nothing calls this directly
no outgoing calls
no test coverage detected