You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
286 B
JavaScript

"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`);
}
};