rokumatsumoto/boyutluseyler

View on GitHub
app/javascript/connected_uploader/constants.js

Summary

Maintainability
A
0 mins
Test Coverage
export const INVALID_CHARACTERS = [
  '&',
  '>',
  '<',
  '\\',
  '{',
  '^',
  '}',
  '%',
  '`',
  ']',
  '[',
  '~',
  '#',
  '|',
  '+'
];

export const MIN_FILE_SIZE = 1;

export const MAX_FILE_SIZE = 104857600;