Loads a node revision from the database.
int $nid: The node revision id.
Drupal\node\Node|false A fully-populated node entity, or FALSE if the node is not found.
function node_revision_load($vid = NULL) {
return entity_revision_load('node', $vid);
}