panic-fn
TypeScript icon, indicating that this package has built-in type declarations

1.2.1 • Public • Published

panic-fn

Source Deploy Coverage Status

Functional way of throwing errors in JS/TS

Why?

Have you ever tried to do this?

callback(() => throw new Error("Not implemented"));
// or this
doStuff(value ?? throw new Error("No value provided"));

But got Uncaught SyntaxError: Unexpected token 'throw'.

With panic-fn it works as expected.

callback(() => panic("Not implemented"));
// or this
doStuff(value ?? panic("No value provided"));

You can also throw custom errors:

panic(new SyntaxError(`Unexpected token 'throw'`));

Installation

Node

npm i panic-fn
import { panic } from "panic-fn";

Deno

import { panic } from "https://deno.land/x/panic_fn/mod.ts";

Module info

This module was created using denoland/dnt.

Source is written in Deno and compiles to both Node.js CJS and ESM.

Readme

Keywords

none

Package Sidebar

Install

npm i panic-fn

Weekly Downloads

180

Version

1.2.1

License

MIT

Unpacked Size

5.17 kB

Total Files

12

Last publish

Collaborators

  • glebbash