JIRA status
💜 Ready for QA (needs test plan)
💜 Ready for QA
🚧 In progress
🚧 In progress (⏸️ PAUSED)
👁️🗨️ In code review
👁️🗨️ In code review (⌛1 days)
💜 Ready for QA (needs test plan)
💜 Ready for QA
🚧 In progress
🚧 In progress (⏸️ PAUSED)
👁️🗨️ In code review
👁️🗨️ In code review (⌛1 days)
const wrapper = document.createElement('div'); | |
// Available variables: | |
// - Machine | |
// - interpret | |
// - assign | |
// - send | |
// - sendParent | |
// - spawn | |
// - raise | |
// - actions |
export const getPrevAnswers = async () => { | |
const options = getDropdownValues(); | |
const [bedtimeValue, asleepValue] = [ | |
random(0, options.length), | |
random(0, options.length) | |
] | |
.map(index => +options[index].value) | |
.sort((a, b) => a - b) | |
.reverse() |