*{{ a: 1 }} // { a: 1 }
*{
({ a: 1 })
} // { a: 1 }
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(); | |
else if(typeof define === 'function' && define.amd) | |
define([], factory); | |
else if(typeof exports === 'object') | |
exports["Babel"] = factory(); | |
else | |
root["Babel"] = factory(); | |
})(this, function() { |
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(); | |
else if(typeof define === 'function' && define.amd) | |
define([], factory); | |
else if(typeof exports === 'object') | |
exports["Babel"] = factory(); | |
else | |
root["Babel"] = factory(); | |
})(this, function() { |
(function webpackUniversalModuleDefinition(root, factory) { | |
if(typeof exports === 'object' && typeof module === 'object') | |
module.exports = factory(); | |
else if(typeof define === 'function' && define.amd) | |
define([], factory); | |
else if(typeof exports === 'object') | |
exports["Babel"] = factory(); | |
else | |
root["Babel"] = factory(); | |
})(this, function() { |
/******/ (function(modules) { | |
// webpackBootstrap | |
/******/ // The module cache | |
/******/ var installedModules = {}; // The require function | |
/******/ | |
/******/ /******/ function __webpack_require__(moduleId) { | |
/******/ | |
/******/ // Check if module is in cache | |
/******/ if (installedModules[moduleId]) { | |
/******/ return installedModules[moduleId].exports; |
*{{ a: 1 }} // { a: 1 }
*{
({ a: 1 })
} // { a: 1 }
{{ a: 1 }} // { a: 1 }
{
({ a: 1 })
} // { a: 1 }
Render 1 | Render 2 | State Preserved? |
---|---|---|
<>...</> |
<>{[...]}</> |
yes (in any level) |
<><>...</></> |
<>...</> |
no |
[...] |
[[...]] |
no |
[<>...</>] * |
[...] |
no |
[<>...</>] * |
<>...</> |
no |
[<>...</>] * |
<>[...]</> |
no |
[<>...</>] * |
[[...]] |
yes |
[<>...>] * |
<><>...>> |
yes |
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing! | |
VAGRANTFILE_API_VERSION = "2" | |
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | |
# All Vagrant configuration is done here. The most common configuration | |
# options are documented and commented below. For a complete reference, | |
# please see the online documentation at vagrantup.com. |
outputBalancedBracket(3); | |
function outputBalancedBracket(n) { | |
for (var i=1; i<=n; ++i) { | |
var outputs = []; | |
brackets("",0,0,i,outputs); | |
console.log("N="+i+" "+outputs.join(',')); | |
} | |
} |