blocks.js 591 B

12345678910111213141516171819202122
  1. /* eslint-disable */
  2. ;(function(root, factory) {
  3. if (typeof define === 'function' && define.amd) { // AMD
  4. define(['./blocks_compressed'], factory);
  5. } else if (typeof exports === 'object') { // Node.js
  6. module.exports = factory(require('./blocks_compressed'));
  7. } else { // Browser
  8. root.BlocklyBlocks = factory(root.BlocklyBlocks);
  9. }
  10. }(this, function(BlocklyBlocks) {
  11. /**
  12. * @license
  13. * Copyright 2020 Google LLC
  14. * SPDX-License-Identifier: Apache-2.0
  15. */
  16. /**
  17. * @fileoverview Blockly blocks module; just a wrapper for blocks_compressed.js.
  18. */
  19. return BlocklyBlocks;
  20. }));
粤ICP备19079148号