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

@helloiampau/components

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@helloiampau/components - npm Package Compare versions

Comparing version 0.0.3 to 0.0.4

3

lib/render.js

@@ -1,2 +0,2 @@

const { patch } = require('incremental-dom');
const { patch, skip } = require('incremental-dom');

@@ -7,4 +7,5 @@ module.exports = function(root, template) {

template(root);
skip();
});
};
};
{
"name": "@helloiampau/components",
"version": "0.0.3",
"version": "0.0.4",
"description": "My favourite js webapp framework based on web-components",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -23,3 +23,4 @@ const chai = require('chai');

id = {
patch: sinon.spy()
patch: sinon.spy(),
skip: sinon.spy()
};

@@ -47,2 +48,12 @@

it('should call the skip function (see issue incremental-dom#182)', function(done) {
const render = mut(root, template);
render();
id.patch.getCall(0).args[1]();
expect(id.skip).to.be.calledAfter(template);
done();
});
});
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