Welcome to the AI slop.
This commit is contained in:
commit
adc01bb99c
1925 changed files with 238364 additions and 0 deletions
18
node_modules/gauge/lib/base-theme.js
generated
vendored
Normal file
18
node_modules/gauge/lib/base-theme.js
generated
vendored
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
'use strict'
|
||||
var spin = require('./spin.js')
|
||||
var progressBar = require('./progress-bar.js')
|
||||
|
||||
module.exports = {
|
||||
activityIndicator: function (values, theme, width) {
|
||||
if (values.spun == null) {
|
||||
return
|
||||
}
|
||||
return spin(theme, values.spun)
|
||||
},
|
||||
progressbar: function (values, theme, width) {
|
||||
if (values.completed == null) {
|
||||
return
|
||||
}
|
||||
return progressBar(theme, width, values.completed)
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue