diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-05-02 10:19:43 -0300 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-05-06 12:29:07 -0300 |
commit | fd2658db8ba707577488b89be84ccaa4a8e9c607 (patch) | |
tree | 970cd76f9b57f9d9dfeebd404a76d2816c1893dc /src/replacer.js | |
parent | 2616ee8b666b0449131a45beafbbe69d152c563f (diff) |
replacer: parseInput -> parseContentNodes
Diffstat (limited to 'src/replacer.js')
-rw-r--r-- | src/replacer.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/replacer.js b/src/replacer.js index 8574bf0c..0698eced 100644 --- a/src/replacer.js +++ b/src/replacer.js @@ -821,7 +821,7 @@ export function postprocessExternalLinks(inputNodes) { return outputNodes; } -export function parseInput(input) { +export function parseContentNodes(input) { if (typeof input !== 'string') { throw new TypeError(`Expected input to be string, got ${typeAppearance(input)}`); } |