price_info_constant.js 378 B

12345678910111213141516
  1. ((factory) => {
  2. if (typeof module !== 'undefined' && !module.nodeType) {
  3. module.exports = factory();
  4. } else {
  5. window.PRICE_INFO_CONST = factory();
  6. }
  7. })(() => {
  8. return {
  9. CRAWL_LOG_KEY: 'OPERATION_CRAWL_DATA',
  10. ProcessStatus: {
  11. START: 'start',
  12. FINISH: 'finish',
  13. ERROR: 'error'
  14. }
  15. };
  16. });