All checks were successful
Publish To Prod / deploy_and_publish (push) Successful in 35s
10 lines
166 B
JavaScript
10 lines
166 B
JavaScript
'use strict'
|
|
|
|
var text = require('./text')
|
|
|
|
module.exports = serializeRaw
|
|
|
|
function serializeRaw(ctx, node) {
|
|
return ctx.dangerous ? node.value : text(ctx, node)
|
|
}
|