"use strict"; module.exports = function (moduleName) { return function unreachable(reason) { throw new Error(`${reason} -- this should never happen and it's a bug in '${moduleName}', please report it!`); }; };