This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* convISBN.js : converter ISBN10 <-> ISBN13 */ | |
/* Copyright (c) 2007 by H.Tsujimura <[email protected]> */ | |
/* Distributed by LGPL. */ | |
/* this script written by H.Tsujimura 20 Jan 2007 */ | |
function convISBN13toISBN10(str) { | |
var s; | |
var c; | |
var checkDigit = 0; | |
var result = ""; |