From 13f91d9ff89dcf0ca8b7895b21b1e0cf43df38f9 Mon Sep 17 00:00:00 2001 From: "(quasar) nebula" Date: Sat, 11 Jan 2025 17:05:25 -0400 Subject: find, reverse: fr.bind + bindReverse --- src/write/build-modes/repl.js | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) (limited to 'src/write') diff --git a/src/write/build-modes/repl.js b/src/write/build-modes/repl.js index ff64ee82..920ad9f7 100644 --- a/src/write/build-modes/repl.js +++ b/src/write/build-modes/repl.js @@ -36,7 +36,7 @@ import * as path from 'node:path'; import * as repl from 'node:repl'; import _find, {bindFind} from '#find'; -import _reverse from '#reverse'; +import _reverse, {bindReverse} from '#reverse'; import CacheableObject from '#cacheable-object'; import {logWarn} from '#cli'; import {debugComposite} from '#composite'; @@ -67,6 +67,15 @@ export async function getContextAssignments({ logWarn`\`find\` variable will be missing`; } + let reverse; + try { + reverse = bindReverse(wikiData); + } catch (error) { + console.error(error); + logWarn`Failed to prepare wikiData-bound reverse() functions`; + logWarn`\`reverse\` variable will be missing`; + } + const replContext = { universalUtilities, ...universalUtilities, @@ -97,6 +106,8 @@ export async function getContextAssignments({ bindFind, _reverse, + reverse, + bindReverse, showAggregate, }; -- cgit 1.3.0-6-gf8a5