node_modules/cli/examples/spinner.js

Maintainability

94.52

Lines of code

7

Created with Raphaël 2.1.002550751002015-1-52014-12-42014-12-3

2015-5-18
Maintainability: 94.52

Created with Raphaël 2.1.0024682015-1-52014-12-42014-12-3

2015-5-18
Lines of Code: 7

Difficulty

3.25

Estimated Errors

0.03

Function weight

By Complexity

Created with Raphaël 2.1.0<anonymous>1

By SLOC

Created with Raphaël 2.1.0<anonymous>3
1
//#!/usr/bin/env node
2
 
3
var cli = require('cli');
4
 
5
cli.spinner('Working..');
6
 
7
setTimeout(function () {
8
    cli.spinner('Working.. done!', true); //End the spinner
9
}, 3000);