Convert cron expressions into human readable descriptions
Overall
score
100%
Build a utility function that converts cron expressions into human-readable descriptions, with special support for time specification nicknames.
Your function should:
@generates
/**
* Converts a cron expression to a human-readable description
* @param {string} expression - The cron expression to convert
* @returns {string} Human-readable description of the schedule
*/
function describeCron(expression) {
// IMPLEMENTATION HERE
}
module.exports = { describeCron };The tool should recognize and convert standard cron time specification aliases:
Provides cron expression to human-readable text conversion.
@satisfied-by
Install with Tessl CLI
npx tessl i tessl/npm-cronstruedocs
evals
scenario-1
scenario-2
scenario-3
scenario-4
scenario-5
scenario-6
scenario-7
scenario-8
scenario-9
scenario-10