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

appbase-js

Package Overview
Dependencies
Maintainers
1
Versions
118
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

appbase-js - npm Package Compare versions

Comparing version 0.10.3 to 0.10.4

2

bower.json
{
"name": "appbase-js",
"version": "0.10.3",
"version": "0.10.4",
"homepage": "https://github.com/appbaseio/appbase-js",

@@ -5,0 +5,0 @@ "authors": [

@@ -30,5 +30,7 @@ 'use strict';

if (args.type.constructor === Array) {
this.type = args.type.join();
this.type = args.type;
this.type_string = args.type.join();
} else {
this.type = [args.type];
this.type_string = args.type;
}

@@ -57,3 +59,3 @@

var hash = murmur.hash128(JSON.stringify(this.query)).hex();
var path = '.percolator/webhooks-0-' + this.type + '-0-' + hash;
var path = '.percolator/webhooks-0-' + this.type_string + '-0-' + hash;

@@ -60,0 +62,0 @@ this.path = path;

{
"name": "appbase-js",
"version": "0.10.3",
"version": "0.10.4",
"description": "Appbase.io streaming client lib for Javascript",

@@ -5,0 +5,0 @@ "main": "dist/appbase.js",

@@ -29,5 +29,7 @@ var murmur = require('murmur')

if(args.type.constructor === Array) {
this.type = args.type.join()
this.type = args.type
this.type_string = args.type.join()
} else {
this.type = [args.type]
this.type_string = args.type
}

@@ -56,3 +58,3 @@

var hash = murmur.hash128(JSON.stringify(this.query)).hex()
var path = '.percolator/webhooks-0-' + this.type + '-0-' + hash
var path = '.percolator/webhooks-0-' + this.type_string + '-0-' + hash

@@ -59,0 +61,0 @@ this.path = path

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

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