Skip to content

Instantly share code, notes, and snippets.

@TheSeamau5
Created April 26, 2015 02:27
Show Gist options
  • Select an option

  • Save TheSeamau5/3d7009fd22402b772fa1 to your computer and use it in GitHub Desktop.

Select an option

Save TheSeamau5/3d7009fd22402b772fa1 to your computer and use it in GitHub Desktop.
Kill thread in Elm
/*
kill : ThreadID -> Task x ()
*/
function kill(id){
return asyncFunction(function(callback){
window.clearTimeout(id);
callback(succeed(Utils.Tuple0));
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment