docs: add work log for 2026-06-15 and update DB deletion policy in README
This commit is contained in:
7
scratch/peek_asset_pc.cjs
Normal file
7
scratch/peek_asset_pc.cjs
Normal file
@@ -0,0 +1,7 @@
|
||||
const XLSX = require('xlsx');
|
||||
const workbook = XLSX.readFile('asset_pc (2026.06.15).xlsx');
|
||||
const sheetName = workbook.SheetNames[0];
|
||||
const sheet = workbook.Sheets[sheetName];
|
||||
const data = XLSX.utils.sheet_to_json(sheet, { header: 1 });
|
||||
console.log('Headers:', JSON.stringify(data[0], null, 2));
|
||||
console.log('Sample Row 1:', JSON.stringify(data[1], null, 2));
|
||||
Reference in New Issue
Block a user