Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

sendMessage.js 402B

1234567891011121314
  1. 'use strict';
  2. /* global __resourceQuery WorkerGlobalScope self */
  3. // Send messages to the outside, so plugins can consume it.
  4. function sendMsg(type, data) {
  5. if (typeof self !== 'undefined' && (typeof WorkerGlobalScope === 'undefined' || !(self instanceof WorkerGlobalScope))) {
  6. self.postMessage({
  7. type: "webpack".concat(type),
  8. data: data
  9. }, '*');
  10. }
  11. }
  12. module.exports = sendMsg;