Mate
A versatile and lightweight library for doing stuff, mate.
const tommo = require('tommo').default;
const normal = 'What a lovely day';
const better = tommo(normal);
// 'What a lovely day, mate'
const { loudMate, oldMate } = require('tommo');
const normal = 'What a dreary arvo';
const loud = loudMate(normal);
// 'What a dreary arvo, MATE'
const old = oldMate(normal);
// 'What a dreary arvo, old mate'
const { bonus } = require('tommo');
const someFella = 'Tommo';
const answer = bonus(someFella);
const ok = `Is ${someFella} Banana Man? ${answer}`;
// false, mate
const { meh } = require('meh');
const normalCommit = 'Remove .only';
const betterCommit = meh(normalCommit);
// 'Remove .only, meh...'
// TODO: Enable JS in bash
## Test
`tommo` uses [Ava](https://github.com/avajs/ava)
```js
yarn run test