{"version":3,"file":"static/npm.mdast-util-to-string.9922acc0.js","mappings":"2HAOA,SAASA,EAASC,GAChB,OACGA,IACEA,EAAKC,OACJD,EAAKE,KACLF,EAAKG,OACJ,aAAcH,GAAQI,EAAIJ,EAAKK,WAC/B,WAAYL,GAAQI,EAAIJ,KAC7B,EAEJ,CAEA,SAASI,EAAIE,GAIX,IAHA,IAAIC,EAAS,GACTC,GAAS,IAEJA,EAAQF,EAAOG,QACtBF,EAAOC,GAAST,EAASO,EAAOE,IAGlC,OAAOD,EAAOG,KAAK,GACrB,CA1BAC,EAAOC,QAAUb,C","sources":["../node_modules/mdast-util-to-string/index.js"],"sourcesContent":["'use strict'\n\nmodule.exports = toString\n\n// Get the text content of a node.\n// Prefer the node’s plain-text fields, otherwise serialize its children,\n// and if the given value is an array, serialize the nodes in it.\nfunction toString(node) {\n return (\n (node &&\n (node.value ||\n node.alt ||\n node.title ||\n ('children' in node && all(node.children)) ||\n ('length' in node && all(node)))) ||\n ''\n )\n}\n\nfunction all(values) {\n var result = []\n var index = -1\n\n while (++index < values.length) {\n result[index] = toString(values[index])\n }\n\n return result.join('')\n}\n"],"names":["toString","node","value","alt","title","all","children","values","result","index","length","join","module","exports"],"sourceRoot":""}