Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@brillout/libassert

Package Overview
Dependencies
Maintainers
1
Versions
21
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@brillout/libassert

Assertions for library authors.

  • 0.2.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
4.2K
decreased by-17.08%
Maintainers
1
Weekly downloads
 
Created
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

Package last updated on 11 Dec 2020

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc