From 1f799bbf136a91473d7a1e8a787d2697e9731ffe Mon Sep 17 00:00:00 2001 From: Anton Nesterov <48190253+nesterow@users.noreply.github.com> Date: Thu, 17 Oct 2024 07:24:15 +0200 Subject: [PATCH] Update README.md --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index 5e338a2..2def9e5 100644 --- a/README.md +++ b/README.md @@ -1,9 +1,13 @@ # Grip + +[A take on Go Style Error Handling In JavaScript](https://dev.to/nesterow/a-take-on-go-style-error-handling-in-javascript-577) + Simplified result/error handling for JavaScript. Grip always returns a consistent call result ready to be handled. It makes the control flow similar to that of Golang, but doesn't force you to make additional null checks or create transitional variables to hold error results. + Instead of returning a nullish error, Grip always returns a consistent status object: ```javascript