This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/elegant-spinner/index.js

16 lines
306 B
JavaScript

'use strict';
var frames = process.platform === 'win32' ?
['-', '\\', '|', '/'] :
['⠋', '⠙', '⠹', '⠸', '⠼', '⠴', '⠦', '⠧', '⠇', '⠏'];
module.exports = function () {
var i = 0;
return function () {
return frames[i = ++i % frames.length];
};
};
module.exports.frames = frames;