get rid of old node script

This commit is contained in:
Nick Playfair 2021-02-22 22:00:43 +00:00
parent 73b4deec6b
commit 14fc669752

View File

@ -1,31 +0,0 @@
const csvFilePath = './tweed57_smt.csv'
const csv = require('csvtojson')
// Which components should we remove from the BOM?
const rejectedParts = [
'TP1',
'TP2',
'TP3',
'G',
'U$1',
'J1',
'J2',
'INPUT'
]
// Return false if the Part value of the object passed in is in the list to remove
function isJunk (element) {
return !rejectedParts.includes(element.Part)
}
csv({
delimiter: ";",
includeColumns: /(Part|Value)/,
ignoreEmpty: true
})
.fromFile(csvFilePath)
.then(jsonObj => {
// Create array containing only relevant parts
let parts = jsonObj.filter(isJunk)
console.log(parts)
})