Wordpress- Disable update notification for individual single plugin

Question: How can we disable 'update notification' for individual single plugin in wordPress?
Answer: Using below filter we can disable 'update notification' for individual single plugin in wordPress.

/******/
/* Disable update notification for individual single plugin
/******/
function filter_plugin_updates( $value ) {
    unset( $value->response['akismet/akismet.php'] );
    return $value;
}
add_filter( 'site_transient_update_plugins', 'filter_plugin_updates' );