From 2e7cfb9deb9dc45f8bb2ad03d1d897fb422fc2b5 Mon Sep 17 00:00:00 2001 From: JOLIMAITRE Matthieu Date: Sat, 15 Jun 2024 01:20:46 +0200 Subject: [PATCH] fix import --- src/lib.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lib.ts b/src/lib.ts index b74b6f1..8d587e0 100644 --- a/src/lib.ts +++ b/src/lib.ts @@ -3,7 +3,7 @@ export type { Arr, ClassOf, Constructible, Function, InstanceOf, KeyOfType, Tail // functions export { all, enumerate, filter, filter_map, it, Iter, map, zip } from "./lib/iter.ts"; -export { next, range, split_promise, wait } from "./lib/utils.ts"; +export { log_from, next, range, split_promise, wait } from "./lib/utils.ts"; // Structures export { Chain } from "./lib/Chain.ts";