Files
30-seconds-of-code/node_modules/mdast-util-to-hast/lib/handlers/strong.js
2019-08-20 15:52:05 +02:00

10 lines
138 B
JavaScript

'use strict'
module.exports = strong
var all = require('../all')
function strong(h, node) {
return h(node, 'strong', all(h, node))
}