UNPKG

@wmfs/tymly-cardscript-plugin

Version:

Plugin which handles interactions to do with Cardscript

9 lines (7 loc) 256 B
const moment = require('moment') module.exports = function filterStaleLongRunningTasks () { return function (event) { const _24hrs = moment().subtract(24, 'hours') return event.running.filter(exec => moment(exec.created).isBefore(_24hrs)) } }