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

deep-kernel

Package Overview
Dependencies
Maintainers
1
Versions
63
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

deep-kernel - npm Package Compare versions

Comparing version 1.9.4 to 1.9.5

33

lib.compiled/Kernel.js

@@ -452,3 +452,26 @@ /**

}
/**
* @todo: add advanced criteria for account microservice
* @returns {Microservice|null}
*/
}, {
key: 'accountMicroservice',
get: function get() {
for (let microserviceKey in this.microservices) {
if (!this.microservices.hasOwnProperty(microserviceKey)) {
continue;
}
let microservice = this.microservices[microserviceKey];
if (microservice.identifier === Kernel.ACCOUNT_MICROSERVICE_IDENTIFIER) {
return microservice;
}
}
return null;
}
}, {
key: 'services',

@@ -738,2 +761,12 @@ get: function get() {

/**
* @returns {String}
*/
}, {
key: 'ACCOUNT_MICROSERVICE_IDENTIFIER',
get: function get() {
return 'deep-account';
}
/**
* @returns {Array}

@@ -740,0 +773,0 @@ */

2

package.json
{
"name": "deep-kernel",
"version": "1.9.4",
"version": "1.9.5",
"description": "DEEP Kernel Library",

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

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