index.sjs 388 B

12345678910111213141516
  1. function getLoadingColor(color) {
  2. if (typeof color === 'string' && color[0] === '#') {
  3. return color.slice(1);
  4. }
  5. }
  6. function getClass(size) {
  7. var list = ['small', 'medium', 'large', 'x-large'];
  8. if (list.indexOf(size) >= 0) {
  9. return "ant-loading-".concat(size);
  10. }
  11. return 'ant-loading-medium';
  12. }
  13. export default {
  14. getLoadingColor: getLoadingColor,
  15. getClass: getClass
  16. };