Render a gif and provide frames to draw.
npm install render-gifRender a gif and provide frames to draw.

``sh`
npm install render-gif
`js`
const fs = require("fs");
const logUpdate = require("log-update");
const renderGif = require("render-gif");
renderGif(fs.readFileSync("unicorn.gif"), logUpdate);
#### data
Type: array-like
The gif data. Can be anything array-like such as a Buffer, Array or Uint8Array.
#### callback
Type: (data: ArrayLike) => void
The callback to provide each rendered frame to.
#### options
Type: object
##### maximumFrameRate
Type: number\Infinity
Default:
The maximum framerate to render the gif at.
#### Return value
##### isPlaying
Type: boolean\true`
Default:
Whether the animation should be rendered and provided to the callback.