(options)
| 700 | } |
| 701 | |
| 702 | function comment(options) { |
| 703 | return { |
| 704 | type: types.comment, |
| 705 | commentId: options.commentId, |
| 706 | body: options.body, |
| 707 | authorName: options.authorName, |
| 708 | authorInitials: options.authorInitials |
| 709 | }; |
| 710 | } |
| 711 | |
| 712 | function noteKey(noteType, id) { |
| 713 | return noteType + "-" + id; |
nothing calls this directly
no outgoing calls
no test coverage detected