From 397e8f3aa647a78a8175bb4d98265a39b9bd51a4 Mon Sep 17 00:00:00 2001 From: Paul Robert Lloyd Date: Tue, 16 Jan 2024 21:58:46 +0000 Subject: [PATCH] feat: export fetchReferences method from module --- index.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/index.js b/index.js index 1f87a3b..3c39e2b 100644 --- a/index.js +++ b/index.js @@ -3,6 +3,8 @@ import { fileURLToPath } from "node:url"; import { fetchReferences } from "./lib/fetch-references.js"; import { flattenItems } from "./lib/flatten-items.js"; +export { fetchReferences } from "./lib/fetch-references.js"; + export const __dirname = path.dirname(fileURLToPath(import.meta.url)); /**