qiwi/qorsproxy

View on GitHub
src/main/js/servlet/common/method.js

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
export const GET = 'GET'
export const POST = 'POST'
export const PUT = 'PUT'
export const DELETE = 'DELETE'
export const HEAD = 'HEAD'
export const OPTIONS = 'OPTIONS'

export default {
  GET,
  POST,
  PUT,
  DELETE,
  HEAD,
  OPTIONS
}