UNPKG

muhammara

Version:

Create, read and modify PDF files and streams. A drop in replacement for hummusjs PDF library

17 lines (15 loc) 317 B
const SemVer = require('../classes/semver') const parse = (version, options, throwErrors = false) => { if (version instanceof SemVer) { return version } try { return new SemVer(version, options) } catch (er) { if (!throwErrors) { return null } throw er } } module.exports = parse