tatsuimage
v0.0.4
Published
A simple module to interact with FNG's image API.
Downloads
4
Readme
This is a module created to interact with the FNG image API.
Usage:
const img = require('tatsuimage')
img.get('img', (err, res) => {
if (err) return console.log(err)
console.log([
`URL: ${res[0]}`,
`USAGE: ${res[1]}`
].join('\n'))
})