varGetResponse = require("./GetResponse");
/**
* Performs a get on the cache and if there are missing paths
* then the request will be forwarded to the get request cycle.
* @private
*/module.exports = functiongetWithPaths(paths) {
returnnewGetResponse(this, paths);
};