How to use the funtch.url function in funtch

To help you get started, we’ve selected a few funtch examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github ViBiOh / dashboard / src / services / Auth / index.js View on Github external
static getGithubAccessToken(state, code) {
    return funtch
      .url(
        `${getAuthApiUrl()}/login/github?state=${encodeURIComponent(
          state,
        )}&code=${encodeURIComponent(code)}`,
      )
      .error(customError)
      .get();
  }
github ViBiOh / dashboard / app / services / Commons / index.js View on Github external
export function auth(url, authentification = localStorage.getItem(STORAGE_KEY_AUTH)) {
  if (!authentification) {
    const authError = new Error('Authentification not find');
    authError.noAuth = true;
    throw authError;
  }

  return funtch.url(url).error(customError).auth(authentification);
}
github ViBiOh / dashboard / src / services / Commons / index.js View on Github external
export function auth(url, authentification = localStorage.getItem(STORAGE_KEY_AUTH)) {
  if (!authentification) {
    const authError = new Error('Authentification not find');
    authError.noAuth = true;
    throw authError;
  }

  return funtch
    .url(url)
    .error(customError)
    .auth(authentification);
}

funtch

FUNctional feTCH isomorphic

MIT
Latest version published 3 years ago

Package Health Score

45 / 100
Full package analysis