New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

can-stream-kefir

Package Overview
Dependencies
Maintainers
8
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

can-stream-kefir - npm Package Compare versions

Comparing version 0.3.3 to 1.0.0-pre.0

10

can-stream-kefir_test.js

@@ -29,11 +29,11 @@ var QUnit = require('steal-qunit');

test('Compute streams do not bind to the compute unless activated', function () {
QUnit.test('Compute streams do not bind to the compute unless activated', function(assert) {
var c = compute(0);
var stream = canStream.toStream(c);
QUnit.equal(c.computeInstance.__bindEvents, undefined);
stream.onValue(function () {});
QUnit.equal(c.computeInstance.__bindEvents._lifecycleBindings, 1);
assert.notOk(c.computeInstance.bound, "should not be bound");
stream.onValue(function() {});
assert.ok(c.computeInstance.bound, "should be bound");
});
test('Compute stream values can be piped into a compute', function () {

@@ -40,0 +40,0 @@ var expected = 0;

{
"name": "can-stream-kefir",
"version": "0.3.3",
"version": "1.0.0-pre.0",
"description": "Stream values into and out of computes",

@@ -38,12 +38,12 @@ "homepage": "http://canjs.com",

"dependencies": {
"can-compute": "^3.1.0",
"can-event": "^3.5.0",
"can-compute": "^4.0.0-pre.6",
"can-event": "^3.7.6",
"can-namespace": "^1.0.0",
"can-observation": "^3.2.0",
"can-stream": "^0.3.0",
"can-observation": "^4.0.0-pre.24",
"can-stream": "^1.0.0-pre.0",
"can-util": "^3.9.0",
"kefir": "^3.5.1"
"kefir": "^3.8.0"
},
"devDependencies": {
"can-define": "^1.2.3",
"can-define": "^2.0.0-pre.21",
"detect-cyclic-packages": "^1.1.0",

@@ -50,0 +50,0 @@ "done-serve": "^1.3.0",

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