Skip to content

Instantly share code, notes, and snippets.

@mohayonao
Created April 5, 2011 22:06
Show Gist options
  • Save mohayonao/904685 to your computer and use it in GitHub Desktop.
Save mohayonao/904685 to your computer and use it in GitHub Desktop.
ISBN13をISBN10に変換する
var isbn10 = function(isbn) {
if (isbn && isbn.length == 13) {
var c = 0;
for (var i = 0; i < 9; i++)
c += isbn.charAt(i + 3) * (10 - i) - 0;
c = 11 - c % 11;
return isbn.substr(3, 9) + ((c == 10) ? "X" : c);
}
return isbn;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment