You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 7-8.RSVP
Socket
Socket
Sign inDemoInstall

minimalistic-assert

Package Overview
Dependencies
Maintainers
2
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

minimalistic-assert

minimalistic-assert ===


Version published
Weekly downloads
15M
decreased by-19.14%
Maintainers
2
Install size
2.35 kB
Created
Weekly downloads
 

Package description

What is minimalistic-assert?

The minimalistic-assert npm package is a minimal assertion library that provides a simple way to assert truths in JavaScript code. It is designed to be small and straightforward, offering basic assertion functionality without any frills.

What are minimalistic-assert's main functionalities?

Assert truthiness

This feature allows you to assert that a value is truthy. If the value is not truthy, it throws an AssertionError with the provided message.

var assert = require('minimalistic-assert');
assert(true, 'This will not throw');
assert(false, 'This will throw an AssertionError');

Assert equality

This feature allows you to assert that two values are equal using the '==' operator. If they are not equal, it throws an AssertionError with the provided message.

var assert = require('minimalistic-assert');
assert.equal(1, 1, 'This will not throw');
assert.equal(1, 2, 'This will throw an AssertionError');

Assert strict equality

This feature allows you to assert that two values are strictly equal using the '===' operator. If they are not strictly equal, it throws an AssertionError with the provided message.

var assert = require('minimalistic-assert');
assert.strictEqual(1, 1, 'This will not throw');
assert.strictEqual(1, '1', 'This will throw an AssertionError');

Other packages similar to minimalistic-assert

Readme

Source

minimalistic-assert

very minimalistic assert module.

FAQs

Package last updated on 11 Apr 2018

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc