UNPKG

json-to-table-format

Version:
12 lines (9 loc) 288 B
// Test ES6 import functionality import { jsontoTable } from "../dist/json_to_txt.js"; const data = [ { name: "John", age: 30, city: "New York" }, { name: "Alice", age: 25, city: "London" }, ]; const rows = jsontoTable(data); console.log("✅ ES6 import test:"); console.log(rows);