"use strict"; module.exports = function matchOrFail(regex, string) { let match = regex.exec(string); if (match != null) { return match.slice(1); } else { throw new Error(`Failed to match regex ${regex}`); } };