Edit the ref of an article @param {Summary} summary @param {String} level @param {String} newRef @return {Summary}
(summary, level, newRef)
| 9 | @return {Summary} |
| 10 | */ |
| 11 | function editArticleRef(summary, level, newRef) { |
| 12 | return mergeAtLevel(summary, level, { |
| 13 | ref: newRef |
| 14 | }); |
| 15 | } |
| 16 | |
| 17 | module.exports = editArticleRef; |
nothing calls this directly
no test coverage detected
searching dependent graphs…