wikicite/wcite

View on GitHub
lib/guess-format.js

Summary

Maintainability
A
0 mins
Test Coverage
module.exports = file => {
  const ext = file ? file.split('.').pop() : ''
  if (ext.match(/(html|json|ndjson)/)) {
    return ext
  } else if (ext === 'bib') {
    return 'bibtex'
  }
}