list.js 198 B

12345678910
  1. module.exports = list
  2. var flow = require('../util/container-flow')
  3. function list(node, _, context) {
  4. var exit = context.enter('list')
  5. var value = flow(node, context)
  6. exit()
  7. return value
  8. }