dart.js 635 B

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