UNPKG

publication-ids

Version:

Javascript / Typescript validator and parse for publication ids; DOI, PMID, PMCID, ISBN, and ISSN

9 lines (8 loc) 290 B
/** * Validates an ISBN (International Standard Serial Number). * * @param {string} identifier - The ISBN to validate. * @returns {boolean} `true` if the ISBN is valid, `false` otherwise. */ declare const _default: (identifier: string | undefined) => boolean; export default _default;