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

bulkjs

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

bulkjs - npm Package Compare versions

Comparing version 0.1.6 to 0.1.7

index_BACKUP_7310.html

9

bulk.js

@@ -65,3 +65,10 @@ /*global require, module */

},
list: function() {
list: function(items_uuids) {
if (items_uuids) {
selected = items_uuids;
if (opts.update) {
opts.update(scope, null, 'mark');
}
}
return selected;

@@ -68,0 +75,0 @@ },

@@ -59,2 +59,4 @@ $(function() {

bulkAction.list([1, 2, 3]);
var k = setInterval(function() {

@@ -61,0 +63,0 @@ if (bulkAction.all()) {

2

package.json
{
"name": "bulkjs",
"version": "0.1.6",
"version": "0.1.7",
"description": "manager for multiple selection.",

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

@@ -59,2 +59,10 @@ var should = require("should");

it("#list()", function() {
var bulk = Bulk({}, {
update: function() {}
});
bulk.list([1, 2, 3]);
bulk.list().should.be.eql([1, 2, 3]);
});
it("#toggleAll()", function() {

@@ -61,0 +69,0 @@ var bulk = Bulk({}, {

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