Skip to content

Table

js
import kittylog from "kittylog";

const data =  {
  firstName: "Mario",
  lastaName: "Rossi",
  age: 35,
  city: "Rome"
};

kittylog.table(data);
Table Parameters

PARAMETERS

ts
interface TableParameters {
  data: Row[]
}

interface Row {
  [key: string]: string | number;
}

Released under the MIT License.