@rss/common
Advanced tools
Comparing version 0.1.2 to 0.1.3
@@ -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 @@ }, { |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
16046
853291