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

assert-enhanced

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

assert-enhanced

An enhanced Node.js assert module

  • 0.2.2
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
2
Maintainers
1
Weekly downloads
 
Created
Source

assert-enhanced

✨ An enhanced Node.js assert module.

IMPORTANT: This module is an improvement from joyent/node-assert-plus module with added assertions registration methods.

Installation:

npm install assert-enhanced

For types definitions:

npm install AshLePoney/node-assert-enhanced-types --save-dev

Example:

const assert = require('assert-enhanced');

function example (stdout, chunk, next) {
  assert.writable(stdout, 'stdout');
  assert.object(chunk, 'chunk');
  assert.string(chunk.id, 'chunk.id');
  assert.buffer(chunk.buffer, 'chunk.buffer');
  assert.func(next, 'next');

  // ...

  stdout.write(chunk);
}

Or to add a new assertion set

const assert = require('assert-enhanced');

const definition = {
  custom: {
    check: (arg) => (arg instanceof Custom),
    operator: 'instanceof',
    actual: (arg) => Object.prototype.toString.call(arg).slice(8, -1)
  }
};

assert.register(null, definitions, { arrayOf: false, optionalArrayOf: false });

// Register to assert-enhanced:
// assert.custom
// assert.optionalCustom
// assert.arrayOfCustom         (generation disabled by options).
// assert.optionalArrayOfCustom (generation disabled by options).

API:

The added assertions methods take two arguments, the value tested first and then the name of the checked parameter.

assert.bool(myBoolArg, 'myBoolArg');
assert.optionalBool(myBoolArg, 'myBoolArg');
assert.arrayOfbool(myBoolArg, 'myBoolArg');
assert.optionalArrayOfBool(myBoolArg, 'myBoolArg');

On bad assertion it will throw an EnhancedAssertionError:

AssertionError [ERR_ASSERTION]: myBoolArg (bool) is required.
    at Object.<anonymous> (/home/user/projects/test-assert-enhanced/test.js:3:8)
    at Module._compile (internal/modules/cjs/loader.js:1147:30)
    at Object.Module._extensions..js (internal/modules/cjs/loader.js:1167:10)
    at Module.load (internal/modules/cjs/loader.js:996:32)
    at Function.Module._load (internal/modules/cjs/loader.js:896:14)
    at Function.executeUserEntryPoint [as runMain] (internal/modules/run_main.js:71:12)
    at internal/main/run_main_module.js:17:47

Enhanced:

  • assert.EnhancedAssertionError
  • assert.bool
  • assert.number
  • assert.string
  • assert.symbol
  • assert.object
  • assert.func
  • assert.array
  • assert.asyncFunc
  • assert.promise
  • assert.date
  • assert.regexp
  • assert.buffer
  • assert.stream
  • assert.readable
  • assert.writable
  • assert.duplex
  • assert.optionalBool
  • assert.optionalNumber
  • assert.optionalString
  • assert.optionalSymbol
  • assert.optionalObject
  • assert.optionalFunc
  • assert.optionalArray
  • assert.optionalAsyncFunction
  • assert.optionalPromise
  • assert.optionalDate
  • assert.optionalRegexp
  • assert.optionalBuffer
  • assert.optionalStream
  • assert.optionalReadable
  • assert.optionalWritable
  • assert.optionalDuplex
  • assert.arrayOfBool
  • assert.arrayOfNumber
  • assert.arrayOfString
  • assert.arrayOfSymbol
  • assert.arrayOfObject
  • assert.arrayOfFunc
  • assert.arrayOfArray
  • assert.arrayOfAsyncFunc
  • assert.arrayOfPromise
  • assert.arrayOfDate
  • assert.arrayOfRegexp
  • assert.arrayOfBuffer
  • assert.arrayOfStream
  • assert.arrayOfReadable
  • assert.arrayOfWritable
  • assert.arrayOfDuplex
  • assert.optionalArrayOfBool
  • assert.optionalArrayOfNumber
  • assert.optionalArrayOfString
  • assert.optionalArrayOfSymbol
  • assert.optionalArrayOfObject
  • assert.optionalArrayOfFunc
  • assert.optionalArrayOfArray
  • assert.optionalArrayOfAsyncFunc
  • assert.optionalArrayOfPromise
  • assert.optionalArrayOfDate
  • assert.optionalArrayOfRegexp
  • assert.optionalArrayOfBuffer
  • assert.optionalArrayOfStream
  • assert.optionalArrayOfReadable
  • assert.optionalArrayOfWritable
  • assert.optionalArrayOfDuplex

Enhanced registration methods:

Node.js assert module:

See more on Node.js assert module: https://nodejs.org/api/assert.html

assert.register(target, definitions, options)->target

Register assertions sets.

argumenttypedetails
targetObject or FunctionThe target where to save the generated assertion methods. If it's null or undefined then registration is processed on the exported module.
definitionsObjectThe definitions object will wrap the definitions of the different assertions that need to be added.
optionsObject (optional)The options object will store the states to know if we should cancel the generation of methods by types. Any registration type can be disabled using options ({ [type]: false }).

Example:

const definitions = {
  custom: {
    check: (arg) => (arg instanceof Custom),
    operator: 'instanceof',
    actual: assert.getClassname
  }
};

assert.register(null, definitions, { optionalArrayOf: false });

// Register [standard, optional, arrayOf]
assert.registerStandardAssertion(target, name, definition)->target

Register standard assertion.

argumenttypedetails
targetObject or FunctionThe target where to save the generated assertion methods. If it's null or undefined then registration is processed on the exported module.
nameStringThe assertion method name.
definitionObjectThe definitions object.

Example:

assert.registerStandardAssert(null, 'custom', {
  check: (arg) => (arg instanceof Custom),
  operator: 'instanceof',
  actual: assert.getClassname
});
assert.registerOptionalAssertion(target, name, definition)->target

Register optional assertion.

argumenttypedetails
targetObject or FunctionThe target where to save the generated assertion methods. If it's null or undefined then registration is processed on the exported module.
nameStringThe assertion method name.
definitionObjectThe definitions object.

Example:

assert.registerOptionalAssertion(null, 'custom', {
  check: (arg) => (arg instanceof Custom),
  operator: 'instanceof',
  actual: assert.getClassname
});
assert.registerArrayOfAssertion(target, name, definition)->target

Register arrayOf assertion.

argumenttypedetails
targetObject or FunctionThe target where to save the generated assertion methods. If it's null or undefined then registration is processed on the exported module.
nameStringThe assertion method name.
definitionObjectThe definitions object.

Example:

assert.registerArrayOfAssertion(null, 'custom', {
  check: (arg) => (arg instanceof Custom),
  operator: 'instanceof',
  actual: assert.getClassname
});
assert.registerOptionalArrayOfAssertion(target, name, definition)->target

Register optional arrayOf assertion.

argumenttypedetails
targetObject or FunctionThe target where to save the generated assertion methods. If it's null or undefined then registration is processed on the exported module.
nameStringThe assertion method name.
definitionObjectThe definitions object.

Example:

assert.registerOptionalArrayOfAssertion(null, 'custom', {
  check: (arg) => (arg instanceof Custom),
  operator: 'instanceof',
  actual: assert.getClassname
});
assert.getClassname(arg)->string

Get an object classname, it's used to seed the actual property from the definitions.

argumenttypedetails
argany
assert.getTypeof(arg)->string

Get a typeof, it's used to seed the actual property from the definitions.

argumenttypedetails
argany

FAQs

Package last updated on 12 Sep 2021

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