10 lines
138 B
JavaScript
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))
|
|
}
|