From a64af0e48be5651a93dced5ba5fe93bdc3e412c7 Mon Sep 17 00:00:00 2001 From: Titus Wormer Date: Mon, 16 Jan 2023 14:38:38 +0100 Subject: [PATCH] Fix to not export utility --- index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.js b/index.js index 39d6c94..84ce8f2 100644 --- a/index.js +++ b/index.js @@ -86,7 +86,7 @@ export function selectAll(selector, tree, space) { * Name of namespace (`'svg'` or `'html'`). * @returns {SelectState} SelectState */ -export function createState(selector, tree, space) { +function createState(selector, tree, space) { return { // State of the query. rootQuery: queryToSelectors(parse(selector)),