Socket
Socket
Sign inDemoInstall

@brillout/libassert

Package Overview
Dependencies
0
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @brillout/libassert

Assertions for library authors.


Version published
Maintainers
1
Created

Readme

Source

Minimalistic & simple assertions for library authors.

Designed so that you can create all kinds of assertion types.

For example:

import { createError } from "@brillout/libassert";

export { assert, assertUsage, assertWarning };

const libName = "Awesome Library";

function assert(condition: unknown): asserts condition {
  if (condition) {
    return;
  }

  const prefix =
  `[${libName}][Internal Error] Something unexpected happened, `+
  `please open a GitHub issue.`;
  const err = createError({ prefix });

  throw err;
}

function assertUsage(condition: unknown, errorMessage: string): asserts condition {
  if (condition) {
    return;
  }

  const err = createError({
    prefix: `[${libName}][Wrong Usage]`,
    errorMessage,
  });

  throw err;
}

function assertWarning(condition: unknown, errorMessage: string): void {
  if (condition) {
    return;
  }

  const err = createError({
    prefix: `[${libName}][Warning]`,
    errorMessage,
  });

  console.warn(err);
}

The createError(errorMessage) is the same than new Error(${prefix} ${errorMessage}) except that:

  • prefix and errorMessage are forbidden to contain new lines.
  • The stack trace is complete but also cleaned to remove useless information.

FAQs

Last updated on 11 Dec 2020

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc