From d31ab239385cbe51eede6ff794fdfa58d7109717 Mon Sep 17 00:00:00 2001 From: Lars Trieloff Date: Mon, 14 Feb 2022 15:52:36 +0100 Subject: [PATCH] fix(symbols): tweak exports --- lib/symbols.js | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/lib/symbols.js b/lib/symbols.js index 72b13219..56e399bf 100644 --- a/lib/symbols.js +++ b/lib/symbols.js @@ -14,13 +14,16 @@ * @typedef {import("../types/api").UniqueSymbols} UniqueSymbols */ +export const filename = Symbol('filename'); +export const fullpath = Symbol('fullpath'); + /** * @type {UniqueSymbols} * */ const symbols = { pointer: Symbol('pointer'), - filename: Symbol('filename'), - fullpath: Symbol('fullpath'), + filename, + fullpath, id: Symbol('id'), titles: Symbol('titles'), resolve: Symbol('resolve'),