1.2.18 • Published 5 months ago

phpdie v1.2.18

Weekly downloads
-
License
ISC
Repository
-
Last release
5 months ago

Die

|| DIE('reason') Throws an error like PHP's or DIE('REASON'), Simple error throwing in a functional dev.

Usage

import DIE from '@snomiao/die'
const token = process.env.TOKEN ?? DIE("Missing Token")

console.log(token) // typeof token === "string"

Reference

spec

import DIE from ".";

it("lives", () => {
  const token = "123" ?? DIE("Missing Token");
  console.log(token);
  expect(token).toEqual("123");
});

it("dies", () => {
  let err: any;
  try {
    const token = process.env.TOKEN ?? DIE("Missing Token");
    console.log(token);
  } catch (e) {
    err = e;
  }
  expect(err).toEqual("Missing Token");
});

it("dies with error", () => {
  let err: any;
  try {
    const token = process.env.TOKEN ?? DIE(new Error("Missing Token"));
    console.log(token);
  } catch (e) {
    err = e;
  }
  expect(err.message).toEqual("Missing Token");
});

Impl

export function DIE(reason?: string | Error): never {
    if (typeof reason === "string") {
        const err = new Error(reason);
        throw err.stack;
    }
    throw reason;
}
1.2.18

5 months ago

1.2.16

5 months ago

1.2.17

5 months ago

1.2.15

5 months ago

1.2.13

8 months ago

1.2.14

8 months ago

1.2.12

10 months ago

1.2.10

10 months ago

1.2.5

11 months ago

1.2.4

11 months ago

1.2.1

11 months ago