compile.js 589 B

1234567891011121314151617181920212223242526272829303132333435
  1. export const H5 = function (fn) {
  2. // #ifdef H5
  3. fn();
  4. // #endif
  5. };
  6. export const APP = function (fn) {
  7. // #ifdef APP-PLUS
  8. fn();
  9. // #endif
  10. };
  11. export const applets = function (fn) {
  12. // #ifdef MP
  13. fn();
  14. // #endif
  15. };
  16. export const notH5 = function (fn) {
  17. // #ifndef H5
  18. fn();
  19. // #endif
  20. };
  21. export const baiduApple = function (fn) {
  22. // #ifdef MP-BAIDU
  23. fn();
  24. // #endif
  25. };
  26. export const touTiao = function (fn) {
  27. // #ifdef MP-TOUTIAO
  28. fn();
  29. // #endif
  30. };
  31. export const mp = function (fn) {
  32. // #ifdef MP
  33. fn();
  34. // #endif
  35. };