- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
30 lines
497 B
JavaScript
30 lines
497 B
JavaScript
// API
|
|
module.exports = abort;
|
|
|
|
/**
|
|
* Aborts leftover active jobs
|
|
*
|
|
* @param {object} state - current state object
|
|
*/
|
|
function abort(state)
|
|
{
|
|
Object.keys(state.jobs).forEach(clean.bind(state));
|
|
|
|
// reset leftover jobs
|
|
state.jobs = {};
|
|
}
|
|
|
|
/**
|
|
* Cleans up leftover job by invoking abort function for the provided job id
|
|
*
|
|
* @this state
|
|
* @param {string|number} key - job id to abort
|
|
*/
|
|
function clean(key)
|
|
{
|
|
if (typeof this.jobs[key] == 'function')
|
|
{
|
|
this.jobs[key]();
|
|
}
|
|
}
|