Move micromark.cjs helpers from lib to helpers so it can be used by code in both locations.

This commit is contained in:
David Anson 2023-01-20 04:10:18 +00:00
parent 1461ad6272
commit 08b31da0aa
5 changed files with 122 additions and 122 deletions

View file

@ -3,7 +3,7 @@
import fs from "node:fs/promises";
import test from "ava";
import { newLineRe } from "../helpers/helpers.js";
import { parse } from "../lib/micromark.cjs";
import { parse } from "../helpers/micromark.cjs";
test("parse", async(t) => {
t.plan(1);