What is Facebook's function __d

后端 未结 3 1592
野趣味
野趣味 2021-01-20 12:02

I\'m working on a project that (hopefully) involves taking advantage of some of the javascript that\'s already built into Facebook. But right away I\'ve got a roadblock in t

3条回答
  •  余生分开走
    2021-01-20 12:32

    The function __d is API for RequireJS used to Define a Module.

    Example:

    __d('Example', [], function a(b, c, d, e, f, g, h) {
     'use strict';
      if (c.__markCompiled) c.__markCompiled();
      f.exports = {
          a: "Hello World"
          };
     }, null);
    

    Call:

    require('Example');
    

    Output:

      Object {a: "Hello World"}
    

提交回复
热议问题