remove lib and node_modules

This commit is contained in:
Shawn Napora
2019-08-06 16:49:21 -04:00
parent dc7133054e
commit 1357802b01
563 changed files with 0 additions and 93758 deletions

View File

@@ -1,13 +0,0 @@
module.exports = withDefaults
const graphql = require('./graphql')
function withDefaults (request, newDefaults) {
const newRequest = request.defaults(newDefaults)
const newApi = function (query, options) {
return graphql(newRequest, query, options)
}
newApi.defaults = withDefaults.bind(null, newRequest)
return newApi
}