UNPKG

lichen-annotate-pdf

Version:

Annotation layer for pdf.js in vue fork of Aaron Leong pdf-annotate-vue

9 lines (8 loc) 242 B
/** * Throw an Error for an abstract function that hasn't been implemented. * * @param {String} name The name of the abstract function */ export default function abstractFunction(name) { throw new Error(name + ' is not implemented'); }