This repository has no description
1import { handleMessage } from '../src/index';
2
3const sample = {
4 author: 'viewer1',
5 text: 'hello little creature what do you think about decentralized streaming?',
6 timestamp: new Date().toISOString()
7};
8
9const result = handleMessage(sample);
10console.log(JSON.stringify({ input: sample, output: result }, null, 2));