strong.js 138 B

123456789
  1. 'use strict'
  2. module.exports = strong
  3. var all = require('../all')
  4. function strong(h, node) {
  5. return h(node, 'strong', all(h, node))
  6. }