UNPKG

falcor

Version:

A JavaScript library for efficient data fetching.

11 lines (9 loc) 283 B
var GetResponse = 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 = function getWithPaths(paths) { return new GetResponse(this, paths); };