* Shortcut to create a new text node * * @param {string} text contents * @returns {Object} remark AST node
(text)
| 9 | * @returns {Object} remark AST node |
| 10 | */ |
| 11 | function t(text) { |
| 12 | return u('text', text); |
| 13 | } |
| 14 | |
| 15 | /** |
| 16 | * Helper used to automatically link items to global JS documentation or to internal |
no outgoing calls
no test coverage detected