question-generator
Version:
Package to generate interview style questions
35 lines (28 loc) • 1.29 kB
JavaScript
import sanitize from "./helpers";
const interview = input => {
if (!input) return ``;
const keyword = sanitize(input);
const questions = [
`Would you consider to work with ${keyword}?`,
`Would you be interested working with ${keyword}?`,
`Would you consider work related to ${keyword}?`,
`Would you enjoy work related to ${keyword}?`,
`Would you want to pursue work related to ${keyword}?`,
`Is working with ${keyword} something that interests you?`,
`Is working with ${keyword} something you would consider doing?`,
`Is working with ${keyword} be something you would enjoy?`,
`Is working with ${keyword} be something you want to do?`,
`Does working with ${keyword} seem like something you would enjoy?`,
`Does working with ${keyword} seem like something you would consider?`,
`Does working with ${keyword} sound like something you are interested in?`,
`Have you ever shown interest in ${keyword}?`,
`Have you ever considered working with ${keyword}?`,
`Have you ever considered work in ${keyword}?`,
`Have you ever had any interest working with ${keyword}?`
];
const getRandomIndex = () => Math.floor(Math.random() * questions.length);
return questions[getRandomIndex()];
};
export default {
interview
};