stream-chat-react-native-core
Version:
The official React Native and Expo components for Stream Chat, a service for building chat applications
18 lines • 418 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.printRow = void 0;
var printRow = row => {
var prettyRow = {};
for (var key in row) {
var value = row[key];
try {
prettyRow[key] = JSON.parse(value);
} catch (e) {
prettyRow[key] = value;
}
}
console.log(JSON.stringify(prettyRow, null, 2));
};
exports.printRow = printRow;
//# sourceMappingURL=printRow.js.map