1.0.6 • Published 5 years ago
issn v1.0.6
International Standard Serial Number (ISSN) Validation
npm install issnvar issn = require('issn');Validate ISSNs.
issn('0355-4325'); // true
issn('0xDEDBEEF'); // falseFormat ISSNs.
issn.format('0355-4325'); // '0355-4325'
issn.format('0001253x'); // '0001-253X'
issn.format('0xDEDBEEF'); // undefinedCalculate the check-digit.
issn.calculateCheckDigit('0355432'); // '5'
issn.calculateCheckDigit('0001253'); // 'X'CLI
$ issn <ISSN>Here's another example piping some canned output through jq.
$ echo {\"prism:pissn\": \"0000-0019\"} | jq -r '.["prism:pissn"]' | issn
trueIf you find any problems with this module, tweet or open an issue.
