@woosh/meep-engine
Version:
Pure JavaScript game engine. Fully featured and production ready.
18 lines (16 loc) • 410 B
JavaScript
import Task from "../Task.js";
/**
* Always fails by throwing an object that was given (typically an Error instance)
* @param {*} e value to be thrown
*/
export function failingTask(e) {
return new Task({
name: "Failing Task",
cycleFunction: function () {
throw e;
},
computeProgress: function () {
return 0;
}
});
}