UNPKG

json-to-table-format

Version:
7 lines (6 loc) 284 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); var json_to_txt_1 = require("../dist/json_to_txt"); var jsonData = [{ "name": "John", "age": 30 }, { "name": "Jane", "age": 25 }]; var table = (0, json_to_txt_1.default)(jsonData); console.log(table);