PATH:
usr
/
local
/
lib
/
node_modules
/
ghost-cli
/
node_modules
/
listr
/
lib
'use strict'; const state = { PENDING: 0, COMPLETED: 1, FAILED: 2, SKIPPED: 3 }; state.toString = input => { switch (input) { case state.PENDING: return 'pending'; case state.COMPLETED: return 'completed'; case state.FAILED: return 'failed'; case state.SKIPPED: return 'skipped'; default: return 'unknown'; } }; module.exports = state;
[-] utils.js
[edit]
[+]
..
[-] renderer.js
[edit]
[-] task.js
[edit]
[-] task-wrapper.js
[edit]
[-] state.js
[edit]
[-] listr-error.js
[edit]