core-browser.js 646 B

123456789101112131415161718192021222324252627
  1. /* eslint-disable */
  2. ;(function(root, factory) {
  3. if (typeof define === 'function' && define.amd) { // AMD
  4. define(['./blockly'], factory);
  5. } else if (typeof exports === 'object') { // Node.js
  6. module.exports = factory(require('./blockly'));
  7. } else { // Browser
  8. root.Blockly = factory(root.Blockly);
  9. }
  10. }(this, function(Blockly) {
  11. /**
  12. * @license
  13. * Copyright 2019 Google LLC
  14. * SPDX-License-Identifier: Apache-2.0
  15. */
  16. /**
  17. * @fileoverview Blockly core module for the browser. It includes blockly.js
  18. * and adds a helper method for setting the locale.
  19. */
  20. /* eslint-disable */
  21. 'use strict';
  22. return Blockly;
  23. }));
粤ICP备19079148号