From b4486819c291a058440b9f18c2822cbdf187801a Mon Sep 17 00:00:00 2001 From: Tim Date: Fri, 15 Nov 2024 15:45:43 +0100 Subject: [PATCH] remove test.md (#206) --- test.md | 9 --------- 1 file changed, 9 deletions(-) delete mode 100644 test.md diff --git a/test.md b/test.md deleted file mode 100644 index 0fa80f4..0000000 --- a/test.md +++ /dev/null @@ -1,9 +0,0 @@ -I have a doubt about effectful interfaces. I have a lib which exposes a bunch of functions to call remote functions in different ways. One, for example, asks for a lambda client (aws sdk) to make invocations. - -I have the need to consume such functions from a repo which doesn't have effect. Is there an existing combinator or such which trasposes the requirements to normal function arguments, maybe using a map or a record or something? - -``` -class Test {} - -const test = new Test() -```