A little module for pretty loading animation
npm install loading-animationLoadingAnimation
===================
LoadingAnimation is a very simple class that allows you to create your loading anims.
----------
Simple using
```javascript``
const LoadingAnimation = require('loading-animation');
let anim = new LoadingAnimation('Text before'); // animation starts automatically
setTimeout(()=>{
anim.stop('Ok');
}, 3000);text-anim-text
Using model and color``javascript```
anim = new LoadingAnimation(['Text before', 'and text after'], 'green')