You are here

public function IsbnToolsService::convertIsbn13to10 in ISBN Field 8

File

src/IsbnToolsService.php, line 39

Class

IsbnToolsService

Namespace

Drupal\isbn

Code

public function convertIsbn13to10($number) {
  try {
    return $this->isbn_tools
      ->convertIsbn13to10($number);
  } catch (\Exception $e) {
  }
}