make resets explicit

pull/1/head
ansuz 7 years ago
parent 89fb718572
commit 381d4ac191

@ -3,6 +3,11 @@ const Fs = require('fs');
const Semaphore = require('saferphore');
const nThen = require('nthen');
/*
takes contents of a pinFile (UTF8 string)
and the pin file's name
returns an array of of channel ids which are pinned
*/
const hashesFromPinFile = (pinFile, fileName) => {
var pins = {};
pinFile.split('\n').filter((x)=>(x)).map((l) => JSON.parse(l)).forEach((l) => {
@ -10,8 +15,7 @@ const hashesFromPinFile = (pinFile, fileName) => {
case 'RESET': {
pins = {};
if (l[1] && l[1].length) { l[1].forEach((x) => { pins[x] = 1; }); }
//jshint -W086
// fallthrough
break;
}
case 'PIN': {
l[1].forEach((x) => { pins[x] = 1; });

Loading…
Cancel
Save