You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
297 B

3 months ago
  1. import URLSearchParams from './classes/URLSearchParams.js'
  2. import FormData from './classes/FormData.js'
  3. export default {
  4. isNode: true,
  5. classes: {
  6. URLSearchParams,
  7. FormData,
  8. Blob: typeof Blob !== 'undefined' && Blob || null
  9. },
  10. protocols: [ 'http', 'https', 'file', 'data' ]
  11. };