@unified-latex/unified-latex-util-print-raw
Advanced tools
Comparing version 1.0.12 to 1.1.0
10
index.js
@@ -9,3 +9,5 @@ // libs/print-raw.ts | ||
if (Array.isArray(node)) { | ||
return [].concat(...node.map((n) => _printRaw(n))); | ||
return [].concat( | ||
...node.map((n) => _printRaw(n)) | ||
); | ||
} | ||
@@ -71,3 +73,7 @@ let argsString, escape; | ||
default: | ||
console.warn("Cannot find render for node ", node, `(of type ${typeof node})`); | ||
console.warn( | ||
"Cannot find render for node ", | ||
node, | ||
`(of type ${typeof node})` | ||
); | ||
return ["" + node]; | ||
@@ -74,0 +80,0 @@ } |
{ | ||
"name": "@unified-latex/unified-latex-util-print-raw", | ||
"version": "1.0.12", | ||
"version": "1.1.0", | ||
"description": "Print a unified-latex AST with no fancy formatting", | ||
@@ -8,3 +8,3 @@ "main": "index.js", | ||
"dependencies": { | ||
"@unified-latex/unified-latex-types": "^1.0.12" | ||
"@unified-latex/unified-latex-types": "^1.1.0" | ||
}, | ||
@@ -11,0 +11,0 @@ "repository": { |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
23570
232