Socket
Socket
Sign inDemoInstall

@mtproto/core

Package Overview
Dependencies
22
Maintainers
1
Versions
43
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 6.1.0 to 6.1.1

10

package.json
{
"name": "@mtproto/core",
"version": "6.1.0",
"version": "6.1.1",
"description": "Telegram API JS (MTProto) client library for Node.js and browser",

@@ -46,14 +46,14 @@ "keywords": [

"aes-js": "3.1.2",
"big-integer": "1.6.48",
"big-integer": "1.6.51",
"configstore": "5.0.1",
"debug": "4.3.1",
"debug": "4.3.3",
"events": "3.3.0",
"leemon": "6.2.0",
"lodash.debounce": "4.0.8",
"pako": "2.0.3"
"pako": "2.0.4"
},
"devDependencies": {
"jest": "26.6.3",
"jest": "27.4.5",
"npm-run-all": "4.1.5"
}
}

@@ -584,3 +584,3 @@ const bigInt = require('big-integer');

device_model: '@mtproto/core',
system_version: '6.1.0',
system_version: '6.1.1',
app_version: '1.0.0',

@@ -587,0 +587,0 @@ system_lang_code: 'en',

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

const { inflate } = require('pako/lib/inflate.js');
const pako = require('pako');
const parserMap = require('../parser');

@@ -98,5 +98,7 @@ const { intsToLong } = require('../../utils/common');

const deserializer = new Deserializer(inflate(gzippedBytes).buffer);
const deserializer = new Deserializer(pako.inflate(gzippedBytes).buffer);
return deserializer.predicate();
const result = deserializer.predicate();
return result;
}

@@ -103,0 +105,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc