123456789101112131415161718 |
- "use strict";
- module.exports = function extractUrlAndGlobal(urlAndGlobal) {
- const index = urlAndGlobal.indexOf("@");
- if (index <= 0 || index === urlAndGlobal.length - 1) {
- throw new Error(`Invalid request "${urlAndGlobal}"`);
- }
- return [urlAndGlobal.substring(index + 1), urlAndGlobal.substring(0, index)];
- };
|