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

@codecompose/throws

Package Overview
Dependencies
Maintainers
0
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codecompose/throws

A Typescript assertion that only throws on null and undefined

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

throws

A Typescript assertion that throws only throws on null and undefined. Typically when writing code we only want to throw on those conditions. Traditional assert or invariant functions throw on all falsy values, and can easily trip you up when you accidentally pass in a valid number that is 0.

Installation

pnpm add throws

... or the equivalent for your package manager.

Usage

import { throws } from "throws";

const valueOrUndefined: number | undefined = 0;

throws(valueOrUndefined, "This is a required value");

/**
 * At this point Typescript will know that valueOrUndefined is not undefined and
 * will allow you to continue writing safe code.
 */

No Unchecked Indexed Access

If you are using the recommended strict noUncheckedIndexedAccess setting, you might want to check out get-or-throw.

Keywords

FAQs

Package last updated on 29 Sep 2024

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