| Current Path : /var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/metro/src/lib/ |
| Current File : /var/www/uibuilder.cmshelp.dk/httpdocs/node_modules/metro/src/lib/parseCustomTransformOptions.js |
"use strict";
const nullthrows = require("nullthrows");
const PREFIX = "transform.";
module.exports = function parseCustomTransformOptions(urlObj) {
const customTransformOptions = Object.create(null);
const query = nullthrows(urlObj.query);
Object.keys(query).forEach((key) => {
if (key.startsWith(PREFIX)) {
customTransformOptions[key.substr(PREFIX.length)] = query[key];
}
});
return customTransformOptions;
};