11 lines
143 B
JavaScript
11 lines
143 B
JavaScript
module.exports = async function (doc) {
|
|
const { head, tail } = doc
|
|
|
|
const node = {
|
|
type: head(),
|
|
icon: tail()
|
|
}
|
|
|
|
return node
|
|
}
|