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

@rss/common

Package Overview
Dependencies
Maintainers
1
Versions
895
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@rss/common - npm Package Compare versions

Comparing version 0.1.2 to 0.1.3

11

dist/model/location/control-area.js

@@ -294,2 +294,7 @@ 'use strict';

},
'Combustible Dust': {
solid: 1, // cubic feet
liquid: null,
gas: null
},
'Combustible Fiber: Loose': {

@@ -519,3 +524,7 @@ solid: 100, // cubic feet

}
return occupanyByRank[type] === 0 ? 'B' : type;
var occupancy = occupanyByRank[type] === 0 ? 'B' : type;
if (codeYear === 2001 && occupancy !== 'H8') {
delete this.maq['Combustible Dust'];
}
return occupancy;
}

@@ -522,0 +531,0 @@ }, {

2

package.json
{
"name": "@rss/common",
"version": "0.1.2",
"version": "0.1.3",
"description": "common constant, classes, & helper",

@@ -5,0 +5,0 @@ "author": "Risk & Safety Solution",

@@ -279,2 +279,7 @@ const ObjectId = require('bson').ObjectID;

},
'Combustible Dust': {
solid: 1, // cubic feet
liquid: null,
gas: null,
},
'Combustible Fiber: Loose': {

@@ -498,3 +503,7 @@ solid: 100, // cubic feet

}
return occupanyByRank[type] === 0 ? 'B' : type;
const occupancy = occupanyByRank[type] === 0 ? 'B' : type;
if (codeYear === 2001 && occupancy !== 'H8') {
delete this.maq['Combustible Dust'];
}
return occupancy;
}

@@ -501,0 +510,0 @@

Sorry, the diff of this file is not supported yet

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