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

stream-assert

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

stream-assert

Assertion library for streams

  • 0.2.0
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
72
decreased by-60.22%
Maintainers
1
Weekly downloads
 
Created
Source

stream-assert NPM version Build Status Dependency Status

This library under heavy development. API will significally change, be brave to pull-request your suggestions about it.

Usage

var array = require('stream-array');
var assert = require('stream-assert');

array([1, 2, 3])
	.pipe(assert.first(1))
	.pipe(assert.second(2))
	.pipe(assert.nth(2, 3))
	.pipe(assert.length(1))
	.on('end', console.log);

API

stream-assert

Builder for asserting stream. Constructed stream will emit error and end on wrong assertion about stream with assertion error as first argument.

nth(n, obj)

Verify, that n object in stream is deepEqual to obj.

first(obj)

alias to nth(0, obj)

second(obj)

alias to nth(1, obj)

length(len)

Asserting, that length of stream is equal len at the end of the stream.

contains(obj)

Searches object in stream that deepEqual to obj.

License

MIT (c) 2014 Vsevolod Strukchinsky

Keywords

FAQs

Package last updated on 13 Aug 2014

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