All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
'use strict'
|
|
|
|
module.exports = textarea
|
|
|
|
var toText = require('hast-util-to-text')
|
|
var wrapText = require('../util/wrap-text')
|
|
|
|
function textarea(h, node) {
|
|
return h(node, 'text', wrapText(h, toText(node)))
|
|
}
|