mirror of
https://github.com/node-red/node-red-nodes.git
synced 2025-03-01 10:37:43 +00:00
A whole bunch of whitespace linting - no functional changes
This commit is contained in:
@@ -519,10 +519,10 @@ module.exports = function(RED) {
|
||||
}
|
||||
});
|
||||
|
||||
function filterdActiveDevices(devices){
|
||||
function filterdActiveDevices(devices) {
|
||||
var activeDevices = [];
|
||||
for(var i=0;i<devices.length;i++){
|
||||
if(devices[i].active){
|
||||
for (var i=0; i<devices.length; i++) {
|
||||
if (devices[i].active) {
|
||||
activeDevices.push(devices[i]);
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user