UNPKG

blockly

Version:

Blockly is a library for building visual programming editors.

25 lines (22 loc) 623 B
/* eslint-disable */ ;(function(root, factory) { if (typeof define === 'function' && define.amd) { // AMD define(['./browser'], factory); } else if (typeof exports === 'object') { // Node.js module.exports = factory(require('./node')); } else { // Browser root.Blockly = factory(root.Blockly); } }(this, function(Blockly) { /** * @license * Copyright 2019 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * @fileoverview Blockly module; this is a wrapper which selects * either browser.js or node.js, depending on which environment we * are running in. */ return Blockly; }));