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

deassert

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deassert

Allows for programming with assertions/invariant-based programming during development without slowing down production.

  • 1.3.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

Deassert

npm version CI Coverage Status
code style: prettier GitHub Discussions BSD 3 Clause license Commitizen friendly semantic-release

Allows for programming with assertions/invariant-based programming during development without slowing down production.

Donate

Any donations would be much appreciated. 😄

Enterprise Users

deassert is available as part of the Tidelift Subscription.

Tidelift is working with the maintainers of deassert and a growing network of open source maintainers to ensure your open source software supply chain meets enterprise standards now and into the future. Learn more.

Installation

# Install with npm
npm install -D deassert

# Install with pnpm
pnpm add -D deassert

# Install with yarn
yarn add -D deassert

# Install with bun
bun add -D deassert

Usage

API

import deassert from "deassert";

const result = deassert(code, options);
console.log(result.code);
Options
modules

An array of modules to be considered assert modules. These modules will be what is stripped out.

default
["assert", "assert/strict", "node:assert", "node:assert/strict"];
sourceMap

Determines if a source map should be generated.

MagicString source map options can be passed in.

default
false

If true is passed, then these options will be used:

{
  "hires": true,
}
ast

The AST of the code that is passed in.

Providing this is optional, but if you have the AST already then we can use that instead of generating our own.

default
undefined
acornOptions

The options provided to Acorn to parse the input code. These are not used if an AST is provided.

default
{
  "sourceType": "module",
  "ecmaVersion": "latest",
}

Keywords

FAQs

Package last updated on 23 Aug 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