"use strict"; module.exports = function extractID(string) { // Quick-and-dirty category ID parsing from category pages let match = /"prmisID":"([^"]+)"/.exec(string); if (match != null) { return match[1]; } else { throw new Error(`ST: prmis ID expected but not found`); } };