You are here

public function IsbnToolsService::format in ISBN Field 8

File

src/IsbnToolsService.php, line 20

Class

IsbnToolsService

Namespace

Drupal\isbn

Code

public function format($number) {
  try {
    return $this->isbn_tools
      ->format($number);
  } catch (InvalidIsbnException $e) {
  }
}