diff options
author | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 14:13:55 -0400 |
---|---|---|
committer | (quasar) nebula <qznebula@protonmail.com> | 2025-01-11 14:13:55 -0400 |
commit | 95cd0873ca80f05acb4100ebe08bc43e8107a429 (patch) | |
tree | 55771ce36b8aec6201b9161465505a3f62eb5605 /src/write/build-modes | |
parent | 5b16090a206db99a266fcc006921782b37f8d1a0 (diff) |
find, reverse: factor out some common interfaces & stub reverse
no bindReverse yet
Diffstat (limited to 'src/write/build-modes')
-rw-r--r-- | src/write/build-modes/repl.js | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/write/build-modes/repl.js b/src/write/build-modes/repl.js index 957d2c2d..ff64ee82 100644 --- a/src/write/build-modes/repl.js +++ b/src/write/build-modes/repl.js @@ -36,6 +36,7 @@ import * as path from 'node:path'; import * as repl from 'node:repl'; import _find, {bindFind} from '#find'; +import _reverse from '#reverse'; import CacheableObject from '#cacheable-object'; import {logWarn} from '#cli'; import {debugComposite} from '#composite'; @@ -95,6 +96,8 @@ export async function getContextAssignments({ find, bindFind, + _reverse, + showAggregate, }; |