content_type
stringclasses
8 values
main_lang
stringclasses
7 values
message
stringlengths
1
50
sha
stringlengths
40
40
patch
stringlengths
52
962k
file_count
int64
1
300
Java
Java
fix linkedcaseinsensitivemap collection methods
55ac110f7bef6d5f0b782e7d49dd2d6b7ef26f2d
<ide><path>spring-core/src/main/java/org/springframework/util/LinkedCaseInsensitiveMap.java <ide> /* <del> * Copyright 2002-2018 the original author or authors. <add> * Copyright 2002-2019 the original author or authors. <ide> * <ide> * Licensed under the Apache License, Version 2.0 (the "License"); <ide> * you may not use this file except in compliance with the License. <ide> package org.springframework.util; <ide> <ide> import java.io.Serializable; <add>import java.util.AbstractCollection; <add>import java.util.AbstractSet; <ide> import java.util.Collection; <ide> import java.util.HashMap; <add>import java.util.Iterator; <ide> import java.util.LinkedHashMap; <ide> import java.util.Locale; <ide> import java.util.Map; <ide> import java.util.Set; <add>import java.util.Spliterator; <add>import java.util.function.Consumer; <ide> import java.util.function.Function; <ide> <ide> import org.springframework.lang.Nullable; <ide> * <p>Does <i>not</i> support {@code null} keys. <ide> * <ide> * @author Juergen Hoeller <add> * @author Phillip Webb <ide> * @since 3.0 <ide> * @param <V> the value type <ide> */ <ide> <ide> private final Locale locale; <ide> <add> private transient Set<String> keySet; <add> <add> private transient Collection<V> values; <add> <add> private transient Set<Entry<String, V>> entrySet; <add> <ide> <ide> /** <ide> * Create a new LinkedCaseInsensitiveMap that stores case-insensitive keys <ide> public boolean containsKey(Object key) { <ide> protected boolean removeEldestEntry(Map.Entry<String, V> eldest) { <ide> boolean doRemove = LinkedCaseInsensitiveMap.this.removeEldestEntry(eldest); <ide> if (doRemove) { <del> caseInsensitiveKeys.remove(convertKey(eldest.getKey())); <add> removeCaseInsensitiveKey(eldest.getKey()); <ide> } <ide> return doRemove; <ide> } <ide> public V computeIfAbsent(String key, Function<? super String, ? extends V> mappi <ide> @Nullable <ide> public V remove(Object key) { <ide> if (key instanceof String) { <del> String caseInsensitiveKey = this.caseInsensitiveKeys.remove(convertKey((String) key)); <add> String caseInsensitiveKey = removeCaseInsensitiveKey((String) key); <ide> if (caseInsensitiveKey != null) { <ide> return this.targetMap.remove(caseInsensitiveKey); <ide> } <ide> public void clear() { <ide> <ide> @Override <ide> public Set<String> keySet() { <del> return this.targetMap.keySet(); <add> Set<String> keySet = this.keySet; <add> if (keySet == null) { <add> keySet = new KeySet(this.targetMap.keySet()); <add> this.keySet = keySet; <add> } <add> return keySet; <ide> } <ide> <ide> @Override <ide> public Collection<V> values() { <del> return this.targetMap.values(); <add> Collection<V> values = this.values; <add> if (values == null) { <add> values = new Values(this.targetMap.values()); <add> this.values = values; <add> } <add> return values; <ide> } <ide> <ide> @Override <ide> public Set<Entry<String, V>> entrySet() { <del> return this.targetMap.entrySet(); <add> Set<Entry<String, V>> entrySet = this.entrySet; <add> if (entrySet == null) { <add> entrySet = new EntrySet(this.targetMap.entrySet()); <add> this.entrySet = entrySet; <add> } <add> return entrySet; <ide> } <ide> <ide> @Override <ide> protected boolean removeEldestEntry(Map.Entry<String, V> eldest) { <ide> return false; <ide> } <ide> <add> private String removeCaseInsensitiveKey(String key) { <add> return this.caseInsensitiveKeys.remove(convertKey(key)); <add> } <add> <add> <add> private class KeySet extends AbstractSet<String> { <add> <add> private final Set<String> delegate; <add> <add> <add> KeySet(Set<String> delegate) { <add> this.delegate = delegate; <add> } <add> <add> <add> @Override <add> public int size() { <add> return this.delegate.size(); <add> } <add> <add> @Override <add> public boolean contains(Object o) { <add> return this.delegate.contains(o); <add> } <add> <add> @Override <add> public Iterator<String> iterator() { <add> return new KeySetIterator(); <add> } <add> <add> @Override <add> public boolean remove(Object o) { <add> return LinkedCaseInsensitiveMap.this.remove(o) != null; <add> } <add> <add> @Override <add> public void clear() { <add> LinkedCaseInsensitiveMap.this.clear(); <add> } <add> <add> @Override <add> public Spliterator<String> spliterator() { <add> return this.delegate.spliterator(); <add> } <add> <add> @Override <add> public void forEach(Consumer<? super String> action) { <add> this.delegate.forEach(action); <add> } <add> <add> } <add> <add> <add> private class Values extends AbstractCollection<V> { <add> <add> private final Collection<V> delegate; <add> <add> <add> Values(Collection<V> delegate) { <add> this.delegate = delegate; <add> } <add> <add> <add> @Override <add> public int size() { <add> return this.delegate.size(); <add> } <add> <add> @Override <add> public boolean contains(Object o) { <add> return this.delegate.contains(o); <add> } <add> <add> @Override <add> public Iterator<V> iterator() { <add> return new ValuesIterator(); <add> } <add> <add> @Override <add> public void clear() { <add> LinkedCaseInsensitiveMap.this.clear(); <add> } <add> <add> @Override <add> public Spliterator<V> spliterator() { <add> return this.delegate.spliterator(); <add> } <add> <add> @Override <add> public void forEach(Consumer<? super V> action) { <add> this.delegate.forEach(action); <add> } <add> <add> } <add> <add> <add> private class EntrySet extends AbstractSet<Entry<String, V>> { <add> <add> private final Set<Entry<String, V>> delegate; <add> <add> <add> public EntrySet(Set<Entry<String, V>> delegate) { <add> this.delegate = delegate; <add> } <add> <add> <add> @Override <add> public int size() { <add> return this.delegate.size(); <add> } <add> <add> @Override <add> public boolean contains(Object o) { <add> return this.delegate.contains(o); <add> } <add> <add> @Override <add> public Iterator<Entry<String, V>> iterator() { <add> return new EntrySetIterator(); <add> } <add> <add> <add> @Override <add> @SuppressWarnings("unchecked") <add> public boolean remove(Object o) { <add> if (this.delegate.remove(o)) { <add> removeCaseInsensitiveKey(((Map.Entry<String, V>) o).getKey()); <add> return true; <add> } <add> return false; <add> } <add> <add> <add> @Override <add> public void clear() { <add> this.delegate.clear(); <add> caseInsensitiveKeys.clear(); <add> } <add> <add> @Override <add> public Spliterator<Entry<String, V>> spliterator() { <add> return this.delegate.spliterator(); <add> } <add> <add> @Override <add> public void forEach(Consumer<? super Entry<String, V>> action) { <add> this.delegate.forEach(action); <add> } <add> <add> } <add> <add> <add> private class EntryIterator { <add> <add> private final Iterator<Entry<String, V>> delegate; <add> <add> private Entry<String, V> last; <add> <add> public EntryIterator() { <add> this.delegate = targetMap.entrySet().iterator(); <add> } <add> <add> public Entry<String, V> nextEntry() { <add> Entry<String, V> entry = this.delegate.next(); <add> this.last = entry; <add> return entry; <add> } <add> <add> public boolean hasNext() { <add> return this.delegate.hasNext(); <add> } <add> <add> public void remove() { <add> this.delegate.remove(); <add> if(this.last != null) { <add> removeCaseInsensitiveKey(this.last.getKey()); <add> this.last = null; <add> } <add> } <add> <add> } <add> <add> <add> private class KeySetIterator extends EntryIterator implements Iterator<String> { <add> <add> @Override <add> public String next() { <add> return nextEntry().getKey(); <add> } <add> <add> } <add> <add> <add> private class ValuesIterator extends EntryIterator implements Iterator<V> { <add> <add> @Override <add> public V next() { <add> return nextEntry().getValue(); <add> } <add> <add> } <add> <add> <add> private class EntrySetIterator extends EntryIterator implements Iterator<Entry<String, V>> { <add> <add> @Override <add> public Entry<String, V> next() { <add> return nextEntry(); <add> } <add> <add> } <add> <ide> } <ide><path>spring-core/src/test/java/org/springframework/util/LinkedCaseInsensitiveMapTests.java <ide> /* <del> * Copyright 2002-2018 the original author or authors. <add> * Copyright 2002-2019 the original author or authors. <ide> * <ide> * Licensed under the Apache License, Version 2.0 (the "License"); <ide> * you may not use this file except in compliance with the License. <ide> <ide> package org.springframework.util; <ide> <add>import java.util.Iterator; <add> <ide> import org.junit.Test; <ide> <ide> import static org.junit.Assert.*; <ide> <ide> /** <add> * Tests for {@link LinkedCaseInsensitiveMap}. <add> * <ide> * @author Juergen Hoeller <add> * @author Phillip Webb <ide> */ <ide> public class LinkedCaseInsensitiveMapTests { <ide> <ide> public void mapClone() { <ide> assertEquals("value2", copy.get("Key")); <ide> } <ide> <add> <add> @Test <add> public void clearFromKeySet() { <add> map.put("key", "value"); <add> map.keySet().clear(); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void removeFromKeySet() { <add> map.put("key", "value"); <add> map.keySet().remove("key"); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void removeFromKeySetViaIterator() { <add> map.put("key", "value"); <add> nextAndRemove(map.keySet().iterator()); <add> assertEquals(0, map.size()); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void clearFromValues() { <add> map.put("key", "value"); <add> map.values().clear(); <add> assertEquals(0, map.size()); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void removeFromValues() { <add> map.put("key", "value"); <add> map.values().remove("value"); <add> assertEquals(0, map.size()); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void removeFromValuesViaIterator() { <add> map.put("key", "value"); <add> nextAndRemove(map.values().iterator()); <add> assertEquals(0, map.size()); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void clearFromEntrySet() { <add> map.put("key", "value"); <add> map.entrySet().clear(); <add> assertEquals(0, map.size()); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void removeFromEntrySet() { <add> map.put("key", "value"); <add> map.entrySet().remove(map.entrySet().iterator().next()); <add> assertEquals(0, map.size()); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> @Test <add> public void removeFromEntrySetViaIterator() { <add> map.put("key", "value"); <add> nextAndRemove(map.entrySet().iterator()); <add> assertEquals(0, map.size()); <add> map.computeIfAbsent("key", k -> "newvalue"); <add> assertEquals("newvalue", map.get("key")); <add> } <add> <add> private void nextAndRemove(Iterator<?> iterator) { <add> iterator.next(); <add> iterator.remove(); <add> } <add> <ide> } <ide><path>spring-web/src/test/java/org/springframework/http/HttpHeadersTests.java <ide> public void bearerAuth() { <ide> } <ide> <ide> @Test <del> @Ignore("Disabled until gh-22821 is resolved") <ide> public void removalFromKeySetRemovesEntryFromUnderlyingMap() { <ide> String headerName = "MyHeader"; <ide> String headerValue = "value"; <ide> public void removalFromKeySetRemovesEntryFromUnderlyingMap() { <ide> headers.keySet().removeIf(key -> key.equals(headerName)); <ide> assertTrue(headers.isEmpty()); <ide> headers.add(headerName, headerValue); <del> assertEquals(headerValue, headers.get(headerName)); <add> assertEquals(headerValue, headers.get(headerName).get(0)); <ide> } <ide> <ide> @Test <del> @Ignore("Disabled until gh-22821 is resolved") <ide> public void removalFromEntrySetRemovesEntryFromUnderlyingMap() { <ide> String headerName = "MyHeader"; <ide> String headerValue = "value"; <ide> public void removalFromEntrySetRemovesEntryFromUnderlyingMap() { <ide> headers.entrySet().removeIf(entry -> entry.getKey().equals(headerName)); <ide> assertTrue(headers.isEmpty()); <ide> headers.add(headerName, headerValue); <del> assertEquals(headerValue, headers.get(headerName)); <add> assertEquals(headerValue, headers.get(headerName).get(0)); <ide> } <ide> <ide> }
3
PHP
PHP
create forwardscalls trait
525f780709026979e08ba5cfe0da91a6853075d8
<ide><path>src/Illuminate/Support/Traits/ForwardsCalls.php <add><?php <add> <add>namespace Illuminate\Support\Traits; <add> <add>use Error; <add>use BadMethodCallException; <add> <add>trait ForwardsCalls <add>{ <add> protected function forwardCallTo($object, $method, $parameters) <add> { <add> try { <add> return $object->{$method}(...$parameters); <add> } catch (Error | BadMethodCallException $e) { <add> $pattern = '~^Call to undefined method (?P<class>[^:]+)::(?P<method>[a-zA-Z]+)\(\)$~'; <add> <add> if (! preg_match($pattern, $e->getMessage(), $matches)) { <add> throw $e; <add> } <add> <add> if ($matches['class'] != get_class($object) || $matches['method'] != $method) { <add> throw $e; <add> } <add> <add> $this->throwBadMethodCallException($method); <add> } <add> } <add> <add> protected function throwBadMethodCallException($method) <add> { <add> throw new BadMethodCallException(sprintf( <add> 'Call to undefined method %s::%s()', static::class, $method <add> )); <add> } <add>} <ide><path>tests/Support/ForwardsCallsTest.php <add><?php <add> <add>namespace Illuminate\Tests\Support; <add> <add>use PHPUnit\Framework\TestCase; <add>use Illuminate\Support\Traits\ForwardsCalls; <add> <add>class ForwardsCallsTest extends TestCase <add>{ <add> public function testForwardsCalls() <add> { <add> $results = (new ForwardsCallsOne)->forwardedTwo('foo', 'bar'); <add> <add> $this->assertEquals(['foo', 'bar'], $results); <add> } <add> <add> public function testNestedForwardCalls() <add> { <add> $results = (new ForwardsCallsOne)->forwardedBase('foo', 'bar'); <add> <add> $this->assertEquals(['foo', 'bar'], $results); <add> } <add> <add> /** <add> * @expectedException \BadMethodCallException <add> * @expectedExceptionMessage Call to undefined method Illuminate\Tests\Support\ForwardsCallsOne::missingMethod() <add> */ <add> public function testMissingForwardedCallThrowsCorrectError() <add> { <add> (new ForwardsCallsOne)->missingMethod('foo', 'bar'); <add> } <add> <add> /** <add> * @expectedException \Error <add> * @expectedExceptionMessage Call to undefined method Illuminate\Tests\Support\ForwardsCallsBase::missingMethod() <add> */ <add> public function testNonForwardedErrorIsNotTamperedWith() <add> { <add> (new ForwardsCallsOne)->baseError('foo', 'bar'); <add> } <add> <add> /** <add> * @expectedException \BadMethodCallException <add> * @expectedExceptionMessage Call to undefined method Illuminate\Tests\Support\ForwardsCallsOne::test() <add> */ <add> public function testThrowBadMethodCallException() <add> { <add> (new ForwardsCallsOne)->throwTestException('test'); <add> } <add>} <add> <add>class ForwardsCallsOne <add>{ <add> use ForwardsCalls; <add> <add> public function __call($method, $parameters) <add> { <add> return $this->forwardCallTo(new ForwardsCallsTwo, $method, $parameters); <add> } <add> <add> public function throwTestException($method) <add> { <add> $this->throwBadMethodCallException($method); <add> } <add>} <add> <add>class ForwardsCallsTwo <add>{ <add> use ForwardsCalls; <add> <add> public function __call($method, $parameters) <add> { <add> return $this->forwardCallTo(new ForwardsCallsBase, $method, $parameters); <add> } <add> <add> public function forwardedTwo(...$parameters) <add> { <add> return $parameters; <add> } <add>} <add> <add>class ForwardsCallsBase <add>{ <add> public function forwardedBase(...$parameters) <add> { <add> return $parameters; <add> } <add> <add> public function baseError() <add> { <add> return $this->missingMethod(); <add> } <add>}
2
Mixed
Javascript
emit deprecation code only once
07d39a2262dac233b5f86b06ecc16484ab0f7858
<ide><path>doc/api/util.md <ide> environment variable. For example: `NODE_DEBUG=fs,net,tls`. <ide> ## util.deprecate(fn, msg[, code]) <ide> <!-- YAML <ide> added: v0.8.0 <add>changes: <add> - version: REPLACEME <add> description: Deprecation warnings are only emitted once for each code. <ide> --> <ide> <ide> * `fn` {Function} The function that is being deprecated. <ide> added: v0.8.0 <ide> The `util.deprecate()` method wraps `fn` (which may be a function or class) in <ide> such a way that it is marked as deprecated. <ide> <del><!-- eslint-disable prefer-rest-params --> <ide> ```js <ide> const util = require('util'); <ide> <del>exports.puts = util.deprecate(function() { <del> for (let i = 0, len = arguments.length; i < len; ++i) { <del> process.stdout.write(arguments[i] + '\n'); <del> } <del>}, 'util.puts: Use console.log instead'); <add>exports.obsoleteFunction = util.deprecate(function() { <add> // Do something here. <add>}, 'obsoleteFunction() is deprecated. Use newShinyFunction() instead.'); <ide> ``` <ide> <ide> When called, `util.deprecate()` will return a function that will emit a <ide> `DeprecationWarning` using the `process.on('warning')` event. The warning will <del>be emitted and printed to `stderr` exactly once, the first time it is called. <del>After the warning is emitted, the wrapped function is called. <add>be emitted and printed to `stderr` the first time the returned function is <add>called. After the warning is emitted, the wrapped function is called without <add>emitting a warning. <add> <add>If the same optional `code` is supplied in multiple calls to `util.deprecate()`, <add>the warning will be emitted only once for that `code`. <add> <add>```js <add>const util = require('util'); <add> <add>const fn1 = util.deprecate(someFunction, someMessage, 'DEP0001'); <add>const fn2 = util.deprecate(someOtherFunction, someOtherMessage, 'DEP0001'); <add>fn1(); // emits a deprecation warning with code DEP0001 <add>fn2(); // does not emit a deprecation warning because it has the same code <add>``` <ide> <ide> If either the `--no-deprecation` or `--no-warnings` command line flags are <ide> used, or if the `process.noDeprecation` property is set to `true` *prior* to <ide><path>lib/internal/util.js <ide> function objectToString(o) { <ide> return Object.prototype.toString.call(o); <ide> } <ide> <add>// Keep a list of deprecation codes that have been warned on so we only warn on <add>// each one once. <add>const codesWarned = {}; <add> <ide> // Mark that a method should not be used. <ide> // Returns a modified function which warns once by default. <ide> // If --no-deprecation is set, then it is a no-op. <ide> function deprecate(fn, msg, code) { <ide> if (!warned) { <ide> warned = true; <ide> if (code !== undefined) { <del> process.emitWarning(msg, 'DeprecationWarning', code, deprecated); <add> if (!codesWarned[code]) { <add> process.emitWarning(msg, 'DeprecationWarning', code, deprecated); <add> codesWarned[code] = true; <add> } <ide> } else { <ide> process.emitWarning(msg, 'DeprecationWarning', deprecated); <ide> } <ide><path>test/parallel/test-util-deprecate.js <add>'use strict'; <add> <add>require('../common'); <add> <add>// Tests basic functionality of util.deprecate(). <add> <add>const assert = require('assert'); <add>const util = require('util'); <add> <add>const expectedWarnings = new Map(); <add> <add>// Emits deprecation only once if same function is called. <add>{ <add> const msg = 'fhqwhgads'; <add> const fn = util.deprecate(() => {}, msg); <add> expectedWarnings.set(msg, { code: undefined, count: 1 }); <add> fn(); <add> fn(); <add>} <add> <add>// Emits deprecation twice for different functions. <add>{ <add> const msg = 'sterrance'; <add> const fn1 = util.deprecate(() => {}, msg); <add> const fn2 = util.deprecate(() => {}, msg); <add> expectedWarnings.set(msg, { code: undefined, count: 2 }); <add> fn1(); <add> fn2(); <add>} <add> <add>// Emits deprecation only once if optional code is the same, even for different <add>// functions. <add>{ <add> const msg = 'cannonmouth'; <add> const code = 'deprecatesque'; <add> const fn1 = util.deprecate(() => {}, msg, code); <add> const fn2 = util.deprecate(() => {}, msg, code); <add> expectedWarnings.set(msg, { code, count: 1 }); <add> fn1(); <add> fn2(); <add> fn1(); <add> fn2(); <add>} <add> <add>process.on('warning', (warning) => { <add> assert.strictEqual(warning.name, 'DeprecationWarning'); <add> assert.ok(expectedWarnings.has(warning.message)); <add> const expected = expectedWarnings.get(warning.message); <add> assert.strictEqual(warning.code, expected.code); <add> expected.count = expected.count - 1; <add> if (expected.count === 0) <add> expectedWarnings.delete(warning.message); <add>}); <add> <add>process.on('exit', () => { <add> assert.deepStrictEqual(expectedWarnings, new Map()); <add>});
3
Java
Java
add throttlelatest operator
5ce21f49465143c48a5bcbd32d73721aded05e78
<ide><path>src/main/java/io/reactivex/Flowable.java <ide> public final Flowable<T> throttleLast(long intervalDuration, TimeUnit unit, Sche <ide> return sample(intervalDuration, unit, scheduler); <ide> } <ide> <add> /** <add> * Throttles items from the upstream {@code Flowable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.png" alt=""> <add> * <p> <add> * Unlike the option with {@link #throttleLatest(long, TimeUnit, boolean)}, the very last item being held back <add> * (if any) is not emitted when the upstream completes. <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Backpressure:</b></dt> <add> * <dd>This operator does not support backpressure as it uses time to control data flow. <add> * If the downstream is not ready to receive items, a <add> * {@link io.reactivex.exceptions.MissingBackpressureException MissingBackpressureException} <add> * will be signaled.</dd> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>{@code throttleLatest} operates by default on the {@code computation} {@link Scheduler}.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @return the new Flowable instance <add> * @since 2.1.14 - experimental <add> * @see #throttleLatest(long, TimeUnit, boolean) <add> * @see #throttleLatest(long, TimeUnit, Scheduler) <add> */ <add> @Experimental <add> @CheckReturnValue <add> @BackpressureSupport(BackpressureKind.ERROR) <add> @SchedulerSupport(SchedulerSupport.COMPUTATION) <add> public final Flowable<T> throttleLatest(long timeout, TimeUnit unit) { <add> return throttleLatest(timeout, unit, Schedulers.computation(), false); <add> } <add> <add> /** <add> * Throttles items from the upstream {@code Flowable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.e.png" alt=""> <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Backpressure:</b></dt> <add> * <dd>This operator does not support backpressure as it uses time to control data flow. <add> * If the downstream is not ready to receive items, a <add> * {@link io.reactivex.exceptions.MissingBackpressureException MissingBackpressureException} <add> * will be signaled.</dd> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>{@code throttleLatest} operates by default on the {@code computation} {@link Scheduler}.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @param emitLast If {@code true}, the very last item from the upstream will be emitted <add> * immediately when the upstream completes, regardless if there is <add> * a timeout window active or not. If {@code false}, the very last <add> * upstream item is ignored and the flow terminates. <add> * @return the new Flowable instance <add> * @since 2.1.14 - experimental <add> * @see #throttleLatest(long, TimeUnit, Scheduler, boolean) <add> */ <add> @Experimental <add> @CheckReturnValue <add> @BackpressureSupport(BackpressureKind.ERROR) <add> @SchedulerSupport(SchedulerSupport.COMPUTATION) <add> public final Flowable<T> throttleLatest(long timeout, TimeUnit unit, boolean emitLast) { <add> return throttleLatest(timeout, unit, Schedulers.computation(), emitLast); <add> } <add> <add> /** <add> * Throttles items from the upstream {@code Flowable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.s.png" alt=""> <add> * <p> <add> * Unlike the option with {@link #throttleLatest(long, TimeUnit, Scheduler, boolean)}, the very last item being held back <add> * (if any) is not emitted when the upstream completes. <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Backpressure:</b></dt> <add> * <dd>This operator does not support backpressure as it uses time to control data flow. <add> * If the downstream is not ready to receive items, a <add> * {@link io.reactivex.exceptions.MissingBackpressureException MissingBackpressureException} <add> * will be signaled.</dd> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>You specify which {@link Scheduler} this operator will use.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @param scheduler the {@link Scheduler} where the timed wait and latest item <add> * emission will be performed <add> * @return the new Flowable instance <add> * @since 2.1.14 - experimental <add> * @see #throttleLatest(long, TimeUnit, Scheduler, boolean) <add> */ <add> @Experimental <add> @CheckReturnValue <add> @BackpressureSupport(BackpressureKind.ERROR) <add> @SchedulerSupport(SchedulerSupport.CUSTOM) <add> public final Flowable<T> throttleLatest(long timeout, TimeUnit unit, Scheduler scheduler) { <add> return throttleLatest(timeout, unit, scheduler, false); <add> } <add> <add> /** <add> * Throttles items from the upstream {@code Flowable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.se.png" alt=""> <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Backpressure:</b></dt> <add> * <dd>This operator does not support backpressure as it uses time to control data flow. <add> * If the downstream is not ready to receive items, a <add> * {@link io.reactivex.exceptions.MissingBackpressureException MissingBackpressureException} <add> * will be signaled.</dd> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>You specify which {@link Scheduler} this operator will use.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @param scheduler the {@link Scheduler} where the timed wait and latest item <add> * emission will be performed <add> * @param emitLast If {@code true}, the very last item from the upstream will be emitted <add> * immediately when the upstream completes, regardless if there is <add> * a timeout window active or not. If {@code false}, the very last <add> * upstream item is ignored and the flow terminates. <add> * @return the new Flowable instance <add> * @since 2.1.14 - experimental <add> */ <add> @Experimental <add> @CheckReturnValue <add> @BackpressureSupport(BackpressureKind.ERROR) <add> @SchedulerSupport(SchedulerSupport.CUSTOM) <add> public final Flowable<T> throttleLatest(long timeout, TimeUnit unit, Scheduler scheduler, boolean emitLast) { <add> ObjectHelper.requireNonNull(unit, "unit is null"); <add> ObjectHelper.requireNonNull(scheduler, "scheduler is null"); <add> return RxJavaPlugins.onAssembly(new FlowableThrottleLatest<T>(this, timeout, unit, scheduler, emitLast)); <add> } <add> <ide> /** <ide> * Returns a Flowable that only emits those items emitted by the source Publisher that are not followed <ide> * by another emitted item within a specified time window. <ide><path>src/main/java/io/reactivex/Observable.java <ide> public final Observable<T> throttleLast(long intervalDuration, TimeUnit unit, Sc <ide> return sample(intervalDuration, unit, scheduler); <ide> } <ide> <add> /** <add> * Throttles items from the upstream {@code Observable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.png" alt=""> <add> * <p> <add> * Unlike the option with {@link #throttleLatest(long, TimeUnit, boolean)}, the very last item being held back <add> * (if any) is not emitted when the upstream completes. <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>{@code throttleLatest} operates by default on the {@code computation} {@link Scheduler}.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @return the new Observable instance <add> * @since 2.1.14 - experimental <add> * @see #throttleLatest(long, TimeUnit, boolean) <add> * @see #throttleLatest(long, TimeUnit, Scheduler) <add> */ <add> @Experimental <add> @CheckReturnValue <add> @SchedulerSupport(SchedulerSupport.COMPUTATION) <add> public final Observable<T> throttleLatest(long timeout, TimeUnit unit) { <add> return throttleLatest(timeout, unit, Schedulers.computation(), false); <add> } <add> <add> /** <add> * Throttles items from the upstream {@code Observable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.e.png" alt=""> <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>{@code throttleLatest} operates by default on the {@code computation} {@link Scheduler}.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @param emitLast If {@code true}, the very last item from the upstream will be emitted <add> * immediately when the upstream completes, regardless if there is <add> * a timeout window active or not. If {@code false}, the very last <add> * upstream item is ignored and the flow terminates. <add> * @return the new Observable instance <add> * @since 2.1.14 - experimental <add> * @see #throttleLatest(long, TimeUnit, Scheduler, boolean) <add> */ <add> @Experimental <add> @CheckReturnValue <add> @SchedulerSupport(SchedulerSupport.COMPUTATION) <add> public final Observable<T> throttleLatest(long timeout, TimeUnit unit, boolean emitLast) { <add> return throttleLatest(timeout, unit, Schedulers.computation(), emitLast); <add> } <add> <add> /** <add> * Throttles items from the upstream {@code Observable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.s.png" alt=""> <add> * <p> <add> * Unlike the option with {@link #throttleLatest(long, TimeUnit, Scheduler, boolean)}, the very last item being held back <add> * (if any) is not emitted when the upstream completes. <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>You specify which {@link Scheduler} this operator will use.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @param scheduler the {@link Scheduler} where the timed wait and latest item <add> * emission will be performed <add> * @return the new Observable instance <add> * @since 2.1.14 - experimental <add> * @see #throttleLatest(long, TimeUnit, Scheduler, boolean) <add> */ <add> @Experimental <add> @CheckReturnValue <add> @SchedulerSupport(SchedulerSupport.CUSTOM) <add> public final Observable<T> throttleLatest(long timeout, TimeUnit unit, Scheduler scheduler) { <add> return throttleLatest(timeout, unit, scheduler, false); <add> } <add> <add> /** <add> * Throttles items from the upstream {@code Observable} by first emitting the next <add> * item from upstream, then periodically emitting the latest item (if any) when <add> * the specified timeout elapses between them. <add> * <p> <add> * <img width="640" height="325" src="https://raw.github.com/wiki/ReactiveX/RxJava/images/rx-operators/throttleLatest.se.png" alt=""> <add> * <p> <add> * If no items were emitted from the upstream during this timeout phase, the next <add> * upstream item is emitted immediately and the timeout window starts from then. <add> * <dl> <add> * <dt><b>Scheduler:</b></dt> <add> * <dd>You specify which {@link Scheduler} this operator will use.</dd> <add> * </dl> <add> * @param timeout the time to wait after an item emission towards the downstream <add> * before trying to emit the latest item from upstream again <add> * @param unit the time unit <add> * @param scheduler the {@link Scheduler} where the timed wait and latest item <add> * emission will be performed <add> * @param emitLast If {@code true}, the very last item from the upstream will be emitted <add> * immediately when the upstream completes, regardless if there is <add> * a timeout window active or not. If {@code false}, the very last <add> * upstream item is ignored and the flow terminates. <add> * @return the new Observable instance <add> * @since 2.1.14 - experimental <add> */ <add> @Experimental <add> @CheckReturnValue <add> @SchedulerSupport(SchedulerSupport.CUSTOM) <add> public final Observable<T> throttleLatest(long timeout, TimeUnit unit, Scheduler scheduler, boolean emitLast) { <add> ObjectHelper.requireNonNull(unit, "unit is null"); <add> ObjectHelper.requireNonNull(scheduler, "scheduler is null"); <add> return RxJavaPlugins.onAssembly(new ObservableThrottleLatest<T>(this, timeout, unit, scheduler, emitLast)); <add> } <add> <ide> /** <ide> * Returns an Observable that only emits those items emitted by the source ObservableSource that are not followed <ide> * by another emitted item within a specified time window. <ide><path>src/main/java/io/reactivex/internal/operators/flowable/FlowableThrottleLatest.java <add>/** <add> * Copyright (c) 2016-present, RxJava Contributors. <add> * <add> * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in <add> * compliance with the License. You may obtain a copy of the License at <add> * <add> * http://www.apache.org/licenses/LICENSE-2.0 <add> * <add> * Unless required by applicable law or agreed to in writing, software distributed under the License is <add> * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See <add> * the License for the specific language governing permissions and limitations under the License. <add> */ <add> <add>package io.reactivex.internal.operators.flowable; <add> <add>import java.util.concurrent.TimeUnit; <add>import java.util.concurrent.atomic.*; <add> <add>import org.reactivestreams.*; <add> <add>import io.reactivex.*; <add>import io.reactivex.annotations.Experimental; <add>import io.reactivex.exceptions.MissingBackpressureException; <add>import io.reactivex.internal.subscriptions.SubscriptionHelper; <add>import io.reactivex.internal.util.BackpressureHelper; <add> <add>/** <add> * Emits the next or latest item when the given time elapses. <add> * <p> <add> * The operator emits the next item, then starts a timer. When the timer fires, <add> * it tries to emit the latest item from upstream. If there was no upstream item, <add> * in the meantime, the next upstream item is emitted immediately and the <add> * timed process repeats. <add> * <add> * @param <T> the upstream and downstream value type <add> * @since 2.1.14 - experimental <add> */ <add>@Experimental <add>public final class FlowableThrottleLatest<T> extends AbstractFlowableWithUpstream<T, T> { <add> <add> final long timeout; <add> <add> final TimeUnit unit; <add> <add> final Scheduler scheduler; <add> <add> final boolean emitLast; <add> <add> public FlowableThrottleLatest(Flowable<T> source, <add> long timeout, TimeUnit unit, Scheduler scheduler, <add> boolean emitLast) { <add> super(source); <add> this.timeout = timeout; <add> this.unit = unit; <add> this.scheduler = scheduler; <add> this.emitLast = emitLast; <add> } <add> <add> @Override <add> protected void subscribeActual(Subscriber<? super T> s) { <add> source.subscribe(new ThrottleLatestSubscriber<T>(s, timeout, unit, scheduler.createWorker(), emitLast)); <add> } <add> <add> static final class ThrottleLatestSubscriber<T> <add> extends AtomicInteger <add> implements FlowableSubscriber<T>, Subscription, Runnable { <add> <add> private static final long serialVersionUID = -8296689127439125014L; <add> <add> final Subscriber<? super T> downstream; <add> <add> final long timeout; <add> <add> final TimeUnit unit; <add> <add> final Scheduler.Worker worker; <add> <add> final boolean emitLast; <add> <add> final AtomicReference<T> latest; <add> <add> final AtomicLong requested; <add> <add> Subscription upstream; <add> <add> volatile boolean done; <add> Throwable error; <add> <add> volatile boolean cancelled; <add> <add> volatile boolean timerFired; <add> <add> long emitted; <add> <add> boolean timerRunning; <add> <add> ThrottleLatestSubscriber(Subscriber<? super T> downstream, <add> long timeout, TimeUnit unit, Scheduler.Worker worker, <add> boolean emitLast) { <add> this.downstream = downstream; <add> this.timeout = timeout; <add> this.unit = unit; <add> this.worker = worker; <add> this.emitLast = emitLast; <add> this.latest = new AtomicReference<T>(); <add> this.requested = new AtomicLong(); <add> } <add> <add> @Override <add> public void onSubscribe(Subscription s) { <add> if (SubscriptionHelper.validate(upstream, s)) { <add> upstream = s; <add> downstream.onSubscribe(this); <add> s.request(Long.MAX_VALUE); <add> } <add> } <add> <add> @Override <add> public void onNext(T t) { <add> latest.set(t); <add> drain(); <add> } <add> <add> @Override <add> public void onError(Throwable t) { <add> error = t; <add> done = true; <add> drain(); <add> } <add> <add> @Override <add> public void onComplete() { <add> done = true; <add> drain(); <add> } <add> <add> @Override <add> public void request(long n) { <add> if (SubscriptionHelper.validate(n)) { <add> BackpressureHelper.add(requested, n); <add> } <add> } <add> <add> @Override <add> public void cancel() { <add> cancelled = true; <add> upstream.cancel(); <add> worker.dispose(); <add> if (getAndIncrement() == 0) { <add> latest.lazySet(null); <add> } <add> } <add> <add> @Override <add> public void run() { <add> timerFired = true; <add> drain(); <add> } <add> <add> void drain() { <add> if (getAndIncrement() != 0) { <add> return; <add> } <add> <add> int missed = 1; <add> <add> AtomicReference<T> latest = this.latest; <add> AtomicLong requested = this.requested; <add> Subscriber<? super T> downstream = this.downstream; <add> <add> for (;;) { <add> <add> for (;;) { <add> if (cancelled) { <add> latest.lazySet(null); <add> return; <add> } <add> <add> boolean d = done; <add> <add> if (d && error != null) { <add> latest.lazySet(null); <add> downstream.onError(error); <add> worker.dispose(); <add> return; <add> } <add> <add> T v = latest.get(); <add> boolean empty = v == null; <add> <add> if (d) { <add> if (!empty && emitLast) { <add> v = latest.getAndSet(null); <add> long e = emitted; <add> if (e != requested.get()) { <add> emitted = e + 1; <add> downstream.onNext(v); <add> downstream.onComplete(); <add> } else { <add> downstream.onError(new MissingBackpressureException( <add> "Could not emit final value due to lack of requests")); <add> } <add> } else { <add> latest.lazySet(null); <add> downstream.onComplete(); <add> } <add> worker.dispose(); <add> return; <add> } <add> <add> if (empty) { <add> if (timerFired) { <add> timerRunning = false; <add> timerFired = false; <add> } <add> break; <add> } <add> <add> if (!timerRunning || timerFired) { <add> v = latest.getAndSet(null); <add> long e = emitted; <add> if (e != requested.get()) { <add> downstream.onNext(v); <add> emitted = e + 1; <add> } else { <add> upstream.cancel(); <add> downstream.onError(new MissingBackpressureException( <add> "Could not emit value due to lack of requests")); <add> worker.dispose(); <add> return; <add> } <add> <add> timerFired = false; <add> timerRunning = true; <add> worker.schedule(this, timeout, unit); <add> } else { <add> break; <add> } <add> } <add> <add> missed = addAndGet(-missed); <add> if (missed == 0) { <add> break; <add> } <add> } <add> } <add> } <add>} <ide><path>src/main/java/io/reactivex/internal/operators/observable/ObservableThrottleLatest.java <add>/** <add> * Copyright (c) 2016-present, RxJava Contributors. <add> * <add> * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in <add> * compliance with the License. You may obtain a copy of the License at <add> * <add> * http://www.apache.org/licenses/LICENSE-2.0 <add> * <add> * Unless required by applicable law or agreed to in writing, software distributed under the License is <add> * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See <add> * the License for the specific language governing permissions and limitations under the License. <add> */ <add> <add>package io.reactivex.internal.operators.observable; <add> <add>import java.util.concurrent.TimeUnit; <add>import java.util.concurrent.atomic.*; <add> <add>import io.reactivex.*; <add>import io.reactivex.annotations.Experimental; <add>import io.reactivex.disposables.Disposable; <add>import io.reactivex.internal.disposables.DisposableHelper; <add> <add>/** <add> * Emits the next or latest item when the given time elapses. <add> * <p> <add> * The operator emits the next item, then starts a timer. When the timer fires, <add> * it tries to emit the latest item from upstream. If there was no upstream item, <add> * in the meantime, the next upstream item is emitted immediately and the <add> * timed process repeats. <add> * <add> * @param <T> the upstream and downstream value type <add> * @since 2.1.14 - experimental <add> */ <add>@Experimental <add>public final class ObservableThrottleLatest<T> extends AbstractObservableWithUpstream<T, T> { <add> <add> final long timeout; <add> <add> final TimeUnit unit; <add> <add> final Scheduler scheduler; <add> <add> final boolean emitLast; <add> <add> public ObservableThrottleLatest(Observable<T> source, <add> long timeout, TimeUnit unit, Scheduler scheduler, <add> boolean emitLast) { <add> super(source); <add> this.timeout = timeout; <add> this.unit = unit; <add> this.scheduler = scheduler; <add> this.emitLast = emitLast; <add> } <add> <add> @Override <add> protected void subscribeActual(Observer<? super T> s) { <add> source.subscribe(new ThrottleLatestObserver<T>(s, timeout, unit, scheduler.createWorker(), emitLast)); <add> } <add> <add> static final class ThrottleLatestObserver<T> <add> extends AtomicInteger <add> implements Observer<T>, Disposable, Runnable { <add> <add> private static final long serialVersionUID = -8296689127439125014L; <add> <add> final Observer<? super T> downstream; <add> <add> final long timeout; <add> <add> final TimeUnit unit; <add> <add> final Scheduler.Worker worker; <add> <add> final boolean emitLast; <add> <add> final AtomicReference<T> latest; <add> <add> Disposable upstream; <add> <add> volatile boolean done; <add> Throwable error; <add> <add> volatile boolean cancelled; <add> <add> volatile boolean timerFired; <add> <add> boolean timerRunning; <add> <add> ThrottleLatestObserver(Observer<? super T> downstream, <add> long timeout, TimeUnit unit, Scheduler.Worker worker, <add> boolean emitLast) { <add> this.downstream = downstream; <add> this.timeout = timeout; <add> this.unit = unit; <add> this.worker = worker; <add> this.emitLast = emitLast; <add> this.latest = new AtomicReference<T>(); <add> } <add> <add> @Override <add> public void onSubscribe(Disposable s) { <add> if (DisposableHelper.validate(upstream, s)) { <add> upstream = s; <add> downstream.onSubscribe(this); <add> } <add> } <add> <add> @Override <add> public void onNext(T t) { <add> latest.set(t); <add> drain(); <add> } <add> <add> @Override <add> public void onError(Throwable t) { <add> error = t; <add> done = true; <add> drain(); <add> } <add> <add> @Override <add> public void onComplete() { <add> done = true; <add> drain(); <add> } <add> <add> @Override <add> public void dispose() { <add> cancelled = true; <add> upstream.dispose(); <add> worker.dispose(); <add> if (getAndIncrement() == 0) { <add> latest.lazySet(null); <add> } <add> } <add> <add> @Override <add> public boolean isDisposed() { <add> return cancelled; <add> } <add> <add> @Override <add> public void run() { <add> timerFired = true; <add> drain(); <add> } <add> <add> void drain() { <add> if (getAndIncrement() != 0) { <add> return; <add> } <add> <add> int missed = 1; <add> <add> AtomicReference<T> latest = this.latest; <add> Observer<? super T> downstream = this.downstream; <add> <add> for (;;) { <add> <add> for (;;) { <add> if (cancelled) { <add> latest.lazySet(null); <add> return; <add> } <add> <add> boolean d = done; <add> <add> if (d && error != null) { <add> latest.lazySet(null); <add> downstream.onError(error); <add> worker.dispose(); <add> return; <add> } <add> <add> T v = latest.get(); <add> boolean empty = v == null; <add> <add> if (d) { <add> v = latest.getAndSet(null); <add> if (!empty && emitLast) { <add> downstream.onNext(v); <add> } <add> downstream.onComplete(); <add> worker.dispose(); <add> return; <add> } <add> <add> if (empty) { <add> if (timerFired) { <add> timerRunning = false; <add> timerFired = false; <add> } <add> break; <add> } <add> <add> if (!timerRunning || timerFired) { <add> v = latest.getAndSet(null); <add> downstream.onNext(v); <add> <add> timerFired = false; <add> timerRunning = true; <add> worker.schedule(this, timeout, unit); <add> } else { <add> break; <add> } <add> } <add> <add> missed = addAndGet(-missed); <add> if (missed == 0) { <add> break; <add> } <add> } <add> } <add> } <add>} <ide><path>src/test/java/io/reactivex/ParamValidationCheckerTest.java <ide> public void checkParallelFlowable() { <ide> addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "throttleLast", Long.TYPE, TimeUnit.class)); <ide> addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "throttleLast", Long.TYPE, TimeUnit.class, Scheduler.class)); <ide> <add> // negative time is considered as zero time <add> addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class)); <add> addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class, Scheduler.class)); <add> addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class, Boolean.TYPE)); <add> addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class, Scheduler.class, Boolean.TYPE)); <ide> <ide> // negative buffer time is considered as zero buffer time <ide> addOverride(new ParamOverride(Flowable.class, 0, ParamMode.ANY, "window", Long.TYPE, TimeUnit.class)); <ide> public void checkParallelFlowable() { <ide> addOverride(new ParamOverride(Observable.class, 0, ParamMode.ANY, "throttleLast", Long.TYPE, TimeUnit.class)); <ide> addOverride(new ParamOverride(Observable.class, 0, ParamMode.ANY, "throttleLast", Long.TYPE, TimeUnit.class, Scheduler.class)); <ide> <add> // negative time is considered as zero time <add> addOverride(new ParamOverride(Observable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class)); <add> addOverride(new ParamOverride(Observable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class, Scheduler.class)); <add> addOverride(new ParamOverride(Observable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class, Boolean.TYPE)); <add> addOverride(new ParamOverride(Observable.class, 0, ParamMode.ANY, "throttleLatest", Long.TYPE, TimeUnit.class, Scheduler.class, Boolean.TYPE)); <ide> <ide> // negative buffer time is considered as zero buffer time <ide> addOverride(new ParamOverride(Observable.class, 0, ParamMode.ANY, "window", Long.TYPE, TimeUnit.class)); <ide><path>src/test/java/io/reactivex/internal/operators/flowable/FlowableThrottleLatestTest.java <add>/** <add> * Copyright (c) 2016-present, RxJava Contributors. <add> * <add> * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in <add> * compliance with the License. You may obtain a copy of the License at <add> * <add> * http://www.apache.org/licenses/LICENSE-2.0 <add> * <add> * Unless required by applicable law or agreed to in writing, software distributed under the License is <add> * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See <add> * the License for the specific language governing permissions and limitations under the License. <add> */ <add> <add>package io.reactivex.internal.operators.flowable; <add> <add>import java.util.concurrent.TimeUnit; <add> <add>import static org.mockito.Mockito.*; <add> <add>import org.junit.Test; <add>import org.reactivestreams.Publisher; <add> <add>import io.reactivex.*; <add>import io.reactivex.exceptions.*; <add>import io.reactivex.functions.*; <add>import io.reactivex.processors.PublishProcessor; <add>import io.reactivex.schedulers.TestScheduler; <add>import io.reactivex.subscribers.TestSubscriber; <add> <add>public class FlowableThrottleLatestTest { <add> <add> @Test <add> public void just() { <add> Flowable.just(1) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .test() <add> .assertResult(1); <add> } <add> <add> @Test <add> public void range() { <add> Flowable.range(1, 5) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .test() <add> .assertResult(1); <add> } <add> <add> @Test <add> public void rangeEmitLatest() { <add> Flowable.range(1, 5) <add> .throttleLatest(1, TimeUnit.MINUTES, true) <add> .test() <add> .assertResult(1, 5); <add> } <add> <add> @Test <add> public void error() { <add> Flowable.error(new TestException()) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .test() <add> .assertFailure(TestException.class); <add> } <add> <add> @Test <add> public void doubleOnSubscribe() { <add> TestHelper.checkDoubleOnSubscribeFlowable(new Function<Flowable<Object>, Publisher<Object>>() { <add> @Override <add> public Publisher<Object> apply(Flowable<Object> f) throws Exception { <add> return f.throttleLatest(1, TimeUnit.MINUTES); <add> } <add> }); <add> } <add> <add> @Test <add> public void badRequest() { <add> TestHelper.assertBadRequestReported( <add> Flowable.never() <add> .throttleLatest(1, TimeUnit.MINUTES) <add> ); <add> } <add> <add> @Test <add> public void normal() { <add> TestScheduler sch = new TestScheduler(); <add> PublishProcessor<Integer> pp = PublishProcessor.create(); <add> <add> TestSubscriber<Integer> ts = pp.throttleLatest(1, TimeUnit.SECONDS, sch).test(); <add> <add> pp.onNext(1); <add> <add> ts.assertValuesOnly(1); <add> <add> pp.onNext(2); <add> <add> ts.assertValuesOnly(1); <add> <add> pp.onNext(3); <add> <add> ts.assertValuesOnly(1); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertValuesOnly(1, 3); <add> <add> pp.onNext(4); <add> <add> ts.assertValuesOnly(1, 3); <add> <add> pp.onNext(5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertValuesOnly(1, 3, 5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertValuesOnly(1, 3, 5); <add> <add> pp.onNext(6); <add> <add> ts.assertValuesOnly(1, 3, 5, 6); <add> <add> pp.onNext(7); <add> pp.onComplete(); <add> <add> ts.assertResult(1, 3, 5, 6); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertResult(1, 3, 5, 6); <add> } <add> <add> <add> @Test <add> public void normalEmitLast() { <add> TestScheduler sch = new TestScheduler(); <add> PublishProcessor<Integer> pp = PublishProcessor.create(); <add> <add> TestSubscriber<Integer> ts = pp.throttleLatest(1, TimeUnit.SECONDS, sch, true).test(); <add> <add> pp.onNext(1); <add> <add> ts.assertValuesOnly(1); <add> <add> pp.onNext(2); <add> <add> ts.assertValuesOnly(1); <add> <add> pp.onNext(3); <add> <add> ts.assertValuesOnly(1); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertValuesOnly(1, 3); <add> <add> pp.onNext(4); <add> <add> ts.assertValuesOnly(1, 3); <add> <add> pp.onNext(5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertValuesOnly(1, 3, 5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertValuesOnly(1, 3, 5); <add> <add> pp.onNext(6); <add> <add> ts.assertValuesOnly(1, 3, 5, 6); <add> <add> pp.onNext(7); <add> pp.onComplete(); <add> <add> ts.assertResult(1, 3, 5, 6, 7); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertResult(1, 3, 5, 6, 7); <add> } <add> <add> @Test <add> public void missingBackpressureExceptionFirst() throws Exception { <add> TestScheduler sch = new TestScheduler(); <add> Action onCancel = mock(Action.class); <add> <add> Flowable.just(1, 2) <add> .doOnCancel(onCancel) <add> .throttleLatest(1, TimeUnit.MINUTES, sch) <add> .test(0) <add> .assertFailure(MissingBackpressureException.class); <add> <add> verify(onCancel).run(); <add> } <add> <add> @Test <add> public void missingBackpressureExceptionLatest() throws Exception { <add> TestScheduler sch = new TestScheduler(); <add> Action onCancel = mock(Action.class); <add> <add> TestSubscriber<Integer> ts = Flowable.just(1, 2) <add> .concatWith(Flowable.<Integer>never()) <add> .doOnCancel(onCancel) <add> .throttleLatest(1, TimeUnit.SECONDS, sch, true) <add> .test(1); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertFailure(MissingBackpressureException.class, 1); <add> <add> verify(onCancel).run(); <add> } <add> <add> @Test <add> public void missingBackpressureExceptionLatestComplete() throws Exception { <add> TestScheduler sch = new TestScheduler(); <add> Action onCancel = mock(Action.class); <add> <add> PublishProcessor<Integer> pp = PublishProcessor.create(); <add> <add> TestSubscriber<Integer> ts = pp <add> .doOnCancel(onCancel) <add> .throttleLatest(1, TimeUnit.SECONDS, sch, true) <add> .test(1); <add> <add> pp.onNext(1); <add> pp.onNext(2); <add> <add> ts.assertValuesOnly(1); <add> <add> pp.onComplete(); <add> <add> ts.assertFailure(MissingBackpressureException.class, 1); <add> <add> verify(onCancel, never()).run(); <add> } <add> <add> @Test <add> public void take() throws Exception { <add> Action onCancel = mock(Action.class); <add> <add> Flowable.range(1, 5) <add> .doOnCancel(onCancel) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .take(1) <add> .test() <add> .assertResult(1); <add> <add> verify(onCancel).run(); <add> } <add> <add> @Test <add> public void reentrantComplete() { <add> TestScheduler sch = new TestScheduler(); <add> final PublishProcessor<Integer> pp = PublishProcessor.create(); <add> <add> TestSubscriber<Integer> ts = new TestSubscriber<Integer>() { <add> @Override <add> public void onNext(Integer t) { <add> super.onNext(t); <add> if (t == 1) { <add> pp.onNext(2); <add> } <add> if (t == 2) { <add> pp.onComplete(); <add> } <add> } <add> }; <add> <add> pp.throttleLatest(1, TimeUnit.SECONDS, sch).subscribe(ts); <add> <add> pp.onNext(1); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> ts.assertResult(1, 2); <add> } <add>} <ide><path>src/test/java/io/reactivex/internal/operators/observable/ObservableThrottleLatestTest.java <add>/** <add> * Copyright (c) 2016-present, RxJava Contributors. <add> * <add> * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in <add> * compliance with the License. You may obtain a copy of the License at <add> * <add> * http://www.apache.org/licenses/LICENSE-2.0 <add> * <add> * Unless required by applicable law or agreed to in writing, software distributed under the License is <add> * distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See <add> * the License for the specific language governing permissions and limitations under the License. <add> */ <add> <add>package io.reactivex.internal.operators.observable; <add> <add>import static org.mockito.Mockito.*; <add> <add>import java.util.concurrent.TimeUnit; <add> <add>import org.junit.Test; <add> <add>import io.reactivex.*; <add>import io.reactivex.exceptions.TestException; <add>import io.reactivex.functions.*; <add>import io.reactivex.observers.TestObserver; <add>import io.reactivex.schedulers.TestScheduler; <add>import io.reactivex.subjects.PublishSubject; <add> <add>public class ObservableThrottleLatestTest { <add> <add> @Test <add> public void just() { <add> Observable.just(1) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .test() <add> .assertResult(1); <add> } <add> <add> @Test <add> public void range() { <add> Observable.range(1, 5) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .test() <add> .assertResult(1); <add> } <add> <add> @Test <add> public void rangeEmitLatest() { <add> Observable.range(1, 5) <add> .throttleLatest(1, TimeUnit.MINUTES, true) <add> .test() <add> .assertResult(1, 5); <add> } <add> <add> @Test <add> public void error() { <add> Observable.error(new TestException()) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .test() <add> .assertFailure(TestException.class); <add> } <add> <add> @Test <add> public void doubleOnSubscribe() { <add> TestHelper.checkDoubleOnSubscribeObservable(new Function<Observable<Object>, Observable<Object>>() { <add> @Override <add> public Observable<Object> apply(Observable<Object> f) throws Exception { <add> return f.throttleLatest(1, TimeUnit.MINUTES); <add> } <add> }); <add> } <add> <add> @Test <add> public void disposed() { <add> TestHelper.checkDisposed( <add> Observable.never() <add> .throttleLatest(1, TimeUnit.MINUTES) <add> ); <add> } <add> <add> @Test <add> public void normal() { <add> TestScheduler sch = new TestScheduler(); <add> PublishSubject<Integer> ps = PublishSubject.create(); <add> <add> TestObserver<Integer> to = ps.throttleLatest(1, TimeUnit.SECONDS, sch).test(); <add> <add> ps.onNext(1); <add> <add> to.assertValuesOnly(1); <add> <add> ps.onNext(2); <add> <add> to.assertValuesOnly(1); <add> <add> ps.onNext(3); <add> <add> to.assertValuesOnly(1); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertValuesOnly(1, 3); <add> <add> ps.onNext(4); <add> <add> to.assertValuesOnly(1, 3); <add> <add> ps.onNext(5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertValuesOnly(1, 3, 5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertValuesOnly(1, 3, 5); <add> <add> ps.onNext(6); <add> <add> to.assertValuesOnly(1, 3, 5, 6); <add> <add> ps.onNext(7); <add> ps.onComplete(); <add> <add> to.assertResult(1, 3, 5, 6); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertResult(1, 3, 5, 6); <add> } <add> <add> <add> @Test <add> public void normalEmitLast() { <add> TestScheduler sch = new TestScheduler(); <add> PublishSubject<Integer> ps = PublishSubject.create(); <add> <add> TestObserver<Integer> to = ps.throttleLatest(1, TimeUnit.SECONDS, sch, true).test(); <add> <add> ps.onNext(1); <add> <add> to.assertValuesOnly(1); <add> <add> ps.onNext(2); <add> <add> to.assertValuesOnly(1); <add> <add> ps.onNext(3); <add> <add> to.assertValuesOnly(1); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertValuesOnly(1, 3); <add> <add> ps.onNext(4); <add> <add> to.assertValuesOnly(1, 3); <add> <add> ps.onNext(5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertValuesOnly(1, 3, 5); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertValuesOnly(1, 3, 5); <add> <add> ps.onNext(6); <add> <add> to.assertValuesOnly(1, 3, 5, 6); <add> <add> ps.onNext(7); <add> ps.onComplete(); <add> <add> to.assertResult(1, 3, 5, 6, 7); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertResult(1, 3, 5, 6, 7); <add> } <add> <add> @Test <add> public void take() throws Exception { <add> Action onCancel = mock(Action.class); <add> <add> Observable.range(1, 5) <add> .doOnDispose(onCancel) <add> .throttleLatest(1, TimeUnit.MINUTES) <add> .take(1) <add> .test() <add> .assertResult(1); <add> <add> verify(onCancel).run(); <add> } <add> <add> @Test <add> public void reentrantComplete() { <add> TestScheduler sch = new TestScheduler(); <add> final PublishSubject<Integer> ps = PublishSubject.create(); <add> <add> TestObserver<Integer> to = new TestObserver<Integer>() { <add> @Override <add> public void onNext(Integer t) { <add> super.onNext(t); <add> if (t == 1) { <add> ps.onNext(2); <add> } <add> if (t == 2) { <add> ps.onComplete(); <add> } <add> } <add> }; <add> <add> ps.throttleLatest(1, TimeUnit.SECONDS, sch).subscribe(to); <add> <add> ps.onNext(1); <add> <add> sch.advanceTimeBy(1, TimeUnit.SECONDS); <add> <add> to.assertResult(1, 2); <add> } <add>}
7
Mixed
Javascript
remove unused model properties
e42413f3e81703aae14272198a5b4ec54136bc15
<ide><path>docs/getting-started/v3-migration.md <ide> Chart.js is no longer providing the `Chart.bundle.js` and `Chart.bundle.min.js`. <ide> * Made `scale.handleDirectionalChanges` private <ide> * Made `scale.tickValues` private <ide> <add>#### Removal of private APIs <add> <add>* `_model.datasetLabel` <add>* `_model.label` <add> <ide> ### Renamed <ide> <ide> * `helpers.clear` was renamed to `helpers.canvas.clear` <ide><path>src/controllers/controller.bar.js <ide> module.exports = DatasetController.extend({ <ide> <ide> updateElement: function(rectangle, index, reset) { <ide> var me = this; <del> var dataset = me.getDataset(); <ide> var options = me._resolveDataElementOptions(index); <ide> <ide> rectangle._datasetIndex = me.index; <ide> module.exports = DatasetController.extend({ <ide> backgroundColor: options.backgroundColor, <ide> borderColor: options.borderColor, <ide> borderSkipped: options.borderSkipped, <del> borderWidth: options.borderWidth, <del> datasetLabel: dataset.label, <del> label: me.chart.data.labels[index] <add> borderWidth: options.borderWidth <ide> }; <ide> <ide> // all borders are drawn for floating bar <ide><path>src/controllers/controller.doughnut.js <ide> module.exports = DatasetController.extend({ <ide> var centerY = (chartArea.top + chartArea.bottom) / 2; <ide> var startAngle = opts.rotation; // non reset case handled later <ide> var endAngle = opts.rotation; // non reset case handled later <del> var dataset = me.getDataset(); <ide> var circumference = reset && animationOpts.animateRotate ? 0 : arc.hidden ? 0 : me.calculateCircumference(arc._val * opts.circumference / DOUBLE_PI); <ide> var innerRadius = reset && animationOpts.animateScale ? 0 : me.innerRadius; <ide> var outerRadius = reset && animationOpts.animateScale ? 0 : me.outerRadius; <ide> module.exports = DatasetController.extend({ <ide> endAngle: endAngle, <ide> circumference: circumference, <ide> outerRadius: outerRadius, <del> innerRadius: innerRadius, <del> label: helpers.valueAtIndexOrDefault(dataset.label, index, chart.data.labels[index]) <add> innerRadius: innerRadius <ide> } <ide> }); <ide> <ide><path>src/controllers/controller.polarArea.js <ide> module.exports = DatasetController.extend({ <ide> var opts = chart.options; <ide> var animationOpts = opts.animation; <ide> var scale = chart.scale; <del> var labels = chart.data.labels; <ide> <ide> var centerX = scale.xCenter; <ide> var centerY = scale.yCenter; <ide> module.exports = DatasetController.extend({ <ide> innerRadius: 0, <ide> outerRadius: reset ? resetRadius : distance, <ide> startAngle: reset && animationOpts.animateRotate ? datasetStartAngle : startAngle, <del> endAngle: reset && animationOpts.animateRotate ? datasetStartAngle : endAngle, <del> label: helpers.valueAtIndexOrDefault(labels, index, labels[index]) <add> endAngle: reset && animationOpts.animateRotate ? datasetStartAngle : endAngle <ide> } <ide> }); <ide> <ide><path>test/specs/controller.bar.tests.js <ide> describe('Chart.controllers.bar', function() { <ide> expect(meta.data[i]._model.base).toBeCloseToPixel(1024); <ide> expect(meta.data[i]._model.width).toBeCloseToPixel(46); <ide> expect(meta.data[i]._model).toEqual(jasmine.objectContaining({ <del> datasetLabel: chart.data.datasets[1].label, <del> label: chart.data.labels[i], <ide> backgroundColor: 'red', <ide> borderSkipped: 'top', <ide> borderColor: 'blue', <ide><path>test/specs/controller.doughnut.tests.js <ide> describe('Chart.controllers.doughnut', function() { <ide> expect(meta.data[i]._model).toEqual(jasmine.objectContaining({ <ide> startAngle: Math.PI * -0.5, <ide> endAngle: Math.PI * -0.5, <del> label: chart.data.labels[i], <ide> backgroundColor: 'rgb(255, 0, 0)', <ide> borderColor: 'rgb(0, 0, 255)', <ide> borderWidth: 2 <ide> describe('Chart.controllers.doughnut', function() { <ide> expect(meta.data[i]._model.startAngle).toBeCloseTo(expected.s, 8); <ide> expect(meta.data[i]._model.endAngle).toBeCloseTo(expected.e, 8); <ide> expect(meta.data[i]._model).toEqual(jasmine.objectContaining({ <del> label: chart.data.labels[i], <ide> backgroundColor: 'rgb(255, 0, 0)', <ide> borderColor: 'rgb(0, 0, 255)', <ide> borderWidth: 2 <ide><path>test/specs/controller.polarArea.tests.js <ide> describe('Chart.controllers.polarArea', function() { <ide> expect(meta.data[i]._model).toEqual(jasmine.objectContaining({ <ide> backgroundColor: 'rgb(255, 0, 0)', <ide> borderColor: 'rgb(0, 255, 0)', <del> borderWidth: 1.2, <del> label: chart.data.labels[i] <add> borderWidth: 1.2 <ide> })); <ide> }); <ide> <ide> describe('Chart.controllers.polarArea', function() { <ide> expect(meta.data[i]._model).toEqual(jasmine.objectContaining({ <ide> backgroundColor: 'rgb(255, 0, 0)', <ide> borderColor: 'rgb(0, 255, 0)', <del> borderWidth: 1.2, <del> label: chart.data.labels[i] <add> borderWidth: 1.2 <ide> })); <ide> }); <ide> });
7
Python
Python
use the new implementation of `six.with_metaclass`
a2340ac6d6b7e31c7e97e8fdaf3e1d73e43b24ba
<ide><path>django/db/models/base.py <ide> class ModelBase(type): <ide> def __new__(cls, name, bases, attrs): <ide> super_new = super(ModelBase, cls).__new__ <ide> <del> # six.with_metaclass() inserts an extra class called 'NewBase' in the <del> # inheritance tree: Model -> NewBase -> object. But the initialization <del> # should be executed only once for a given model class. <del> <del> # attrs will never be empty for classes declared in the standard way <del> # (ie. with the `class` keyword). This is quite robust. <del> if name == 'NewBase' and attrs == {}: <del> return super_new(cls, name, bases, attrs) <del> <ide> # Also ensure initialization is only performed for subclasses of Model <ide> # (excluding Model class itself). <del> parents = [b for b in bases if isinstance(b, ModelBase) and <del> not (b.__name__ == 'NewBase' and b.__mro__ == (b, object))] <add> parents = [b for b in bases if isinstance(b, ModelBase)] <ide> if not parents: <ide> return super_new(cls, name, bases, attrs) <ide> <ide><path>django/utils/six.py <ide> def write(data): <ide> <ide> def with_metaclass(meta, *bases): <ide> """Create a base class with a metaclass.""" <del> return meta("NewBase", bases, {}) <add> # This requires a bit of explanation: the basic idea is to make a <add> # dummy metaclass for one level of class instantiation that replaces <add> # itself with the actual metaclass. Because of internal type checks <add> # we also need to make sure that we downgrade the custom metaclass <add> # for one level to something closer to type (that's why __call__ and <add> # __init__ comes back from type etc.). <add> class metaclass(meta): <add> __call__ = type.__call__ <add> __init__ = type.__init__ <add> def __new__(cls, name, this_bases, d): <add> if this_bases is None: <add> return type.__new__(cls, name, (), d) <add> return meta(name, bases, d) <add> return metaclass('temporary_class', None, {}) <add> <ide> <ide> def add_metaclass(metaclass): <ide> """Class decorator for creating a class with a metaclass."""
2
Python
Python
update version number on trunk
01900f628194622750d17cc6f65a484c8c2f2f93
<ide><path>numpy/version.py <del>version='1.0.3' <add>version='1.0.4' <ide> release=False <ide> <ide> if not release:
1
Text
Text
remove whitespace typo
62dcb1f3faad4402251ab1fc461accc4bece1d3b
<ide><path>curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-plus-operator.english.md <ide> Example: <ide> <ide> ```js <ide> var ourStr = "I come first. " + "I come second."; <del>// ourStr is "I come first. I come second." <add>// ourStr is "I come first. I come second." <ide> ``` <ide> <ide> </section>
1
Text
Text
fix some typos in deprecations.md and vm.md
3d04e6c9a5522b6391a4a914ca16f2337abb35e7
<ide><path>doc/api/deprecations.md <ide> accepted by the legacy `url.parse()` API. The mentioned APIs now use the WHATWG <ide> URL parser that requires strictly valid URLs. Passing an invalid URL is <ide> deprecated and support will be removed in the future. <ide> <del><a id="DEP00XX"></a> <del>### DEP00XX: vm.Script cached data <add><a id="DEP0110"></a> <add>### DEP0110: vm.Script cached data <ide> <ide> Type: Documentation-only <ide> <ide> The option `produceCachedData` has been deprecated. Use <ide> [`process.env`]: process.html#process_process_env <ide> [`punycode`]: punycode.html <ide> [`require.extensions`]: modules.html#modules_require_extensions <del>[`script.createCachedData()`]: vm.html#vm_script_create_cached_data <add>[`script.createCachedData()`]: vm.html#vm_script_createcacheddata <ide> [`setInterval()`]: timers.html#timers_setinterval_callback_delay_args <ide> [`setTimeout()`]: timers.html#timers_settimeout_callback_delay_args <ide> [`tls.CryptoStream`]: tls.html#tls_class_cryptostream <ide><path>doc/api/vm.md <ide> changes: <ide> `cachedData` property of the returned `vm.Script` instance. <ide> The `cachedDataProduced` value will be set to either `true` or `false` <ide> depending on whether code cache data is produced successfully. <del> This option is deprecated in favor of `script.createCachedData`. <add> This option is deprecated in favor of `script.createCachedData()`. <ide> <ide> Creating a new `vm.Script` object compiles `code` but does not run it. The <ide> compiled `vm.Script` can be run later multiple times. The `code` is not bound to
2
Text
Text
fix minor typo in recurrent.md
af4f889fa694cc5f3e6421f5036dbaf19d431570
<ide><path>docs/sources/layers/recurrent.md <ide> Fully connected RNN where the output is to fed back to the input. <ide> - __activation__: activation function. Can be the name of an existing function (str), or a Theano function (see: [activations](../activations.md)). <ide> - __weights__: list of numpy arrays to set as initial weights. The list should have 3 elements, of shapes: `[(input_dim, output_dim), (output_dim, output_dim), (output_dim,)]`. <ide> - __return_sequences__: Boolean. Whether to return the last output in the output sequence, or the full sequence. <del> - __go_backwards__: Boolean (default False). If True, rocess the input sequence backwards. <add> - __go_backwards__: Boolean (default False). If True, process the input sequence backwards. <ide> - __stateful__: Boolean (default False). If True, the last state for each sample at index i in a batch will be used as initial state for the sample of index i in the following batch. <ide> - __input_dim__: dimensionality of the input (integer). This argument (or alternatively, the keyword argument `input_shape`) is required when using this layer as the first layer in a model. <ide> - __input_length__: Length of input sequences, when it is constant. This argument is required if you are going to connect `Flatten` then `Dense` layers upstream (without it, the shape of the dense outputs cannot be computed). <ide> Gated Recurrent Unit - Cho et al. 2014. <ide> - __inner_activation__: activation function for the inner cells. <ide> - __weights__: list of numpy arrays to set as initial weights. The list should have 9 elements. <ide> - __return_sequences__: Boolean. Whether to return the last output in the output sequence, or the full sequence. <del> - __go_backwards__: Boolean (default False). If True, rocess the input sequence backwards. <add> - __go_backwards__: Boolean (default False). If True, process the input sequence backwards. <ide> - __stateful__: Boolean (default False). If True, the last state for each sample at index i in a batch will be used as initial state for the sample of index i in the following batch. <ide> - __input_dim__: dimensionality of the input (integer). This argument (or alternatively, the keyword argument `input_shape`) is required when using this layer as the first layer in a model. <ide> - __input_length__: Length of input sequences, when it is constant. This argument is required if you are going to connect `Flatten` then `Dense` layers upstream (without it, the shape of the dense outputs cannot be computed). <ide> Long-Short Term Memory unit - Hochreiter 1997. <ide> - __inner_activation__: activation function for the inner cells. <ide> - __weights__: list of numpy arrays to set as initial weights. The list should have 12 elements. <ide> - __return_sequences__: Boolean. Whether to return the last output in the output sequence, or the full sequence. <del> - __go_backwards__: Boolean (default False). If True, rocess the input sequence backwards. <add> - __go_backwards__: Boolean (default False). If True, process the input sequence backwards. <ide> - __stateful__: Boolean (default False). If True, the last state for each sample at index i in a batch will be used as initial state for the sample of index i in the following batch. <ide> - __input_dim__: dimensionality of the input (integer). This argument (or alternatively, the keyword argument `input_shape`) is required when using this layer as the first layer in a model. <ide> - __input_length__: Length of input sequences, when it is constant. This argument is required if you are going to connect `Flatten` then `Dense` layers upstream (without it, the shape of the dense outputs cannot be computed).
1
PHP
PHP
add ipv4 and ipv6 validations
b81cfae9a7090bc02271fa629aa3d2f17715c899
<ide><path>src/Illuminate/Validation/Validator.php <ide> protected function validateIp($attribute, $value) <ide> return filter_var($value, FILTER_VALIDATE_IP) !== false; <ide> } <ide> <add> /** <add> * Validate that an attribute is a valid IPv4. <add> * <add> * @param string $attribute <add> * @param mixed $value <add> * @return bool <add> */ <add> protected function validateIpv4($attribute, $value) <add> { <add> return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4) !== false; <add> } <add> <add> /** <add> * Validate that an attribute is a valid IPv6. <add> * <add> * @param string $attribute <add> * @param mixed $value <add> * @return bool <add> */ <add> protected function validateIpv6($attribute, $value) <add> { <add> return filter_var($value, FILTER_VALIDATE_IP, FILTER_FLAG_IPV6) !== false; <add> } <add> <ide> /** <ide> * Validate that an attribute is a valid e-mail address. <ide> * <ide><path>tests/Validation/ValidationValidatorTest.php <ide> public function testValidateIp() <ide> <ide> $v = new Validator($trans, ['ip' => '127.0.0.1'], ['ip' => 'Ip']); <ide> $this->assertTrue($v->passes()); <add> <add> $v = new Validator($trans, ['ip' => '127.0.0.1'], ['ip' => 'Ipv4']); <add> $this->assertTrue($v->passes()); <add> <add> $v = new Validator($trans, ['ip' => '::1'], ['ip' => 'Ipv6']); <add> $this->assertTrue($v->passes()); <add> <add> $v = new Validator($trans, ['ip' => '127.0.0.1'], ['ip' => 'Ipv6']); <add> $this->assertTrue($v->fails()); <add> <add> $v = new Validator($trans, ['ip' => '::1'], ['ip' => 'Ipv4']); <add> $this->assertTrue($v->fails()); <ide> } <ide> <ide> public function testValidateEmail()
2
PHP
PHP
fix failing tests
5aaa5c59401ac2fa2e99c24d779b8db7193201a8
<ide><path>lib/Cake/Routing/Route/Route.php <ide> public function match($url, $context = array()) { <ide> * @return string Composed route string. <ide> */ <ide> protected function _writeUrl($params, $pass = array(), $query = array()) { <del> if (isset($params['prefix'], $params['action'])) { <del> $params['action'] = str_replace($params['prefix'] . '_', '', $params['action']); <add> if (isset($params['prefix'])) { <add> $prefixed = $params['prefix'] . '_'; <add> } <add> if (isset($prefixed, $params['action']) && strpos($params['action'], $prefixed) === 0) { <add> $params['action'] = substr($params['action'], strlen($prefixed) * -1); <ide> unset($params['prefix']); <ide> } <ide> <ide><path>lib/Cake/Routing/Router.php <ide> public static function url($url = null, $options = array()) { <ide> $options = array(); <ide> } <ide> $urlType = gettype($url); <add> $hasColonSlash = $hasLeadingSlash = $isJavascript = $isMailto = false; <add> <add> if ($urlType === 'string') { <add> $isJavascript = strpos($url, 'javascript:') === 0; <add> $isMailto = strpos($url, 'mailto:') === 0; <add> $hasColonSlash = strpos($url, '://') !== false; <add> $hasLeadingSlash = isset($url[0]) ? $url[0] === '/' : false; <add> } <add> <ide> if ( <ide> $urlType === 'string' && <ide> strpos($url, ':') !== false && <del> strpos($url, '/') === false <add> strpos($url, '/') === false && <add> !$isMailto && <add> !$isJavascript <ide> ) { <ide> $url = self::_splitName($url, $options); <ide> $urlType = 'array'; <ide> public static function url($url = null, $options = array()) { <ide> } <ide> <ide> $output = $frag = null; <del> $hasColonSlash = $hasLeadingSlash = false; <del> <del> if ($urlType === 'string') { <del> $hasColonSlash = strpos($url, '://') !== false; <del> $hasLeadingSlash = isset($url[0]) ? $url[0] === '/' : false; <del> } <ide> <ide> if (empty($url)) { <ide> $output = isset($here) ? $here : '/'; <ide> public static function url($url = null, $options = array()) { <ide> } elseif ( <ide> $urlType === 'string' && <ide> !$hasLeadingSlash && <del> !$hasColonSlash <add> !$hasColonSlash && <add> !$isMailto && <add> !$isJavascript <ide> ) { <ide> // named route. <ide> $route = self::$_routes->get($url); <ide> public static function url($url = null, $options = array()) { <ide> } else { <ide> // String urls. <ide> if ( <del> ($hasColonSlash || <del> (strpos($url, 'javascript:') === 0) || <del> (strpos($url, 'mailto:') === 0)) || <add> ($hasColonSlash || $isJavascript || $isMailto) || <ide> (!strncmp($url, '#', 1)) <ide> ) { <ide> return $url; <ide><path>lib/Cake/Test/TestCase/Routing/RouterTest.php <ide> public function testUrlGenerationWithUrlFilter() { <ide> $this->assertEquals(2, $calledCount); <ide> } <ide> <add>/** <add> * Test that strings starting with mailto: etc are handled correctly. <add> * <add> * @return void <add> */ <add> public function testUrlGenerationMailtoAndJavascript() { <add> $mailto = 'mailto:mark@example.com'; <add> $result = Router::url($mailto); <add> $this->assertEquals($mailto, $result); <add> <add> $js = 'javascript:alert("hi")'; <add> $result = Router::url($js); <add> $this->assertEquals($js, $result); <add> } <add> <ide> /** <ide> * test that you can leave active plugin routes with plugin = null <ide> * <ide> public function testCustomRouteException() { <ide> * <ide> * @return void <ide> */ <del> public function testRouterReverse() { <add> public function testReverse() { <ide> Router::connect('/:controller/:action/*'); <ide> $params = array( <ide> 'controller' => 'posts', <ide> public function testRouterReverse() { <ide> $result = Router::reverse($params); <ide> $this->assertEquals('/posts/view/1', $result); <ide> <add> Router::reload(); <ide> Router::connect('/:lang/:controller/:action/*', array(), array('lang' => '[a-z]{3}')); <ide> $params = array( <ide> 'lang' => 'eng',
3
Text
Text
fix typos in lights article
37bf8a822f619ba33793ecc09bbaf62d8a7f0c8f
<ide><path>threejs/lessons/threejs-lights.md <ide> Description: Setting up Lights <ide> This article is part of a series of articles about three.js. The <ide> first article is [three.js fundamentals](threejs-fundamentals.html). If <ide> you haven't read that yet and you're new to three.js you might want to <del>consider starting there. The <add>consider starting there. The <ide> [previous article was about textures](threejs-textures.html). <ide> <del>Let go over how to use the various kinds of lights in three. <add>Let's go over how to use the various kinds of lights in three. <ide> <ide> Starting with one of our previous samples let's update the camera. <ide> We'll set the field of view to 45 degrees, the far plane to 100 units, <ide> in our page <ide> +<script src="resources/threejs/r105/js/controls/OrbitControls.js"></script> <ide> ``` <ide> <del>Then we can use them. We pass the `OrbitControls` a camera to <add>Then we can use them. We pass the `OrbitControls` a camera to <ide> control and the DOM element to use to get input events <ide> <ide> ```js <ide> const repeats = planeSize / 2; <ide> texture.repeat.set(repeats, repeats); <ide> ``` <ide> <del>We then make a plane geometry, a material for the plane, and mesh <add>We then make a plane geometry, a material for the plane, and a mesh <ide> to insert it in the scene. Planes default to being in the XY plane <ide> but the ground is in the XZ plane so we rotate it. <ide> <ide> scene.add(light); <ide> ``` <ide> <ide> Let's also make it so we can adjust the light's parameters. <del>We'll use [dat.GUI](https://github.com/dataarts/dat.gui) again. <add>We'll use [dat.GUI](https://github.com/dataarts/dat.gui) again. <ide> To be able to adjust the color via dat.GUI we need a small helper <ide> that presents a property to dat.GUI that looks like a CSS hex color string <ide> (eg: `#FF8844`). Our helper will get the color from a named property, <ide> convert it to a hex string to offer to dat.GUI. When dat.GUI tries <ide> to set the helper's property we'll assign the result back to the light's <del>color. <add>color. <ide> <ide> Here's the helper: <ide> <ide> And here's the result <ide> <ide> Click and drag in the scene to *orbit* the camera. <ide> <del>Notice there is no defintion. The shapes are flat. The `AmbientLight` effectively <del>just multiply's the material's color by the light's color times the <add>Notice there is no definition. The shapes are flat. The `AmbientLight` effectively <add>just multiplies the material's color by the light's color times the <ide> intensity. <ide> <ide> color = materialColor * light.color * light.intensity; <ide> <del>That's it. It has no direction. <add>That's it. It has no direction. <ide> This style of ambient lighting is actually not all that <ide> useful as lighting as it's 100% even so other than changing the color <ide> of everything in the scene it doesn't look much like *lighting*. <ide> What it does help with is making the darks not too dark. <ide> <ide> ## `HemisphereLight` <ide> <del>Let's switch the code the a `HemisphereLight`. A `HemisphereLight` <add>Let's switch the code to a `HemisphereLight`. A `HemisphereLight` <ide> takes a sky color and a ground color and just multplies the <del>material's color between those 2 colors. The sky color if the <add>material's color between those 2 colors—the sky color if the <ide> surface of the object is pointing up and the ground color if <ide> the surface of the object is pointing down. <ide> <ide> of helper objects we can add to our scene to help visualize <ide> invisible parts of a scene. In this case we'll use the <ide> `DirectionalLightHelper` which will draw a plane, to represent <ide> the light, and a line from the light to the target. We just <del>pass it the light and add itd add it to the scene. <add>pass it the light and add it to the scene. <ide> <ide> ```js <ide> const helper = new THREE.DirectionalLightHelper(light); <ide> scene.add(helper); <ide> ``` <ide> <del>While we're at it lets make it so we can set both the position <add>While we're at it let's make it so we can set both the position <ide> of the light and the target. To do this we'll make a function <ide> that given a `Vector3` will adjust its `x`, `y`, and `z` properties <ide> using `dat.GUI`. <ide> Now we can move the light, and its target <ide> <ide> Orbit the camera and it gets easier to see. The plane <ide> represents a `DirectionalLight` because a directional <del>light computes light comming in one direction. There is no <add>light computes light coming in one direction. There is no <ide> *point* the light comes from, it's an infinite plane of light <ide> shooting out parallel rays of light. <ide> <ide> Notice when `distance` is > 0 how the light fades out. <ide> <ide> ## `SpotLight` <ide> <del>Spotlights are affectively a point light with a cone <add>Spotlights are effectively a point light with a cone <ide> attached where the light only shines inside the cone. <ide> There's actually 2 cones. An outer cone and an inner <ide> cone. Between the inner cone and the outer cone the <ide> scene.add(helper); <ide> ``` <ide> <ide> The spotlight's cone's angle is set with the [`angle`](Spotlight.angle) <del>property in radians. We'll use our `DegRadHelper` from the <add>property in radians. We'll use our `DegRadHelper` from the <ide> [texture article](threejs-textures.html) to present a UI in <ide> degrees. <ide> <ide> gui.add(light, 'penumbra', 0, 1, 0.01); <ide> {{{example url="../threejs-lights-spot-w-helper.html" }}} <ide> <ide> Notice with the default `penumbra` of 0 the spotlight has a very sharp edge <del>where as as you adjust the `penumbra` toward 1 edge blurs. <add>whereas as you adjust the `penumbra` toward 1 the edge blurs. <ide> <ide> It might be hard to see the *cone* of the spotlight. The reason is it's <ide> below the ground. Shorten the distance to around 5 and you'll see the open <ide> There's one more type of light, the `RectAreaLight`, which represents <ide> exactly what it sounds like, a rectangular area of light like a long <ide> fluorescent light or maybe a frosted sky light in a ceiling. <ide> <del>The `RectAreaLight` only works with the `MeshStandardMaterai` and the <add>The `RectAreaLight` only works with the `MeshStandardMaterial` and the <ide> `MeshPhysicalMaterial` so let's change all our materials to `MeshStandardMaterial` <ide> <ide> ```js <ide> scene.add(light); <ide> *light.add(helper); <ide> ``` <ide> <del>One thing to notice is that unlike the `DirectionalLight` and the `SpotLight` the <add>One thing to notice is that unlike the `DirectionalLight` and the `SpotLight`, the <ide> `RectAreaLight` does not use a target. It just uses its rotation. Another thing <ide> to notice is the helper needs to be a child of the light. It is not a child of the <ide> scene like other helpers. <ide> One thing we didn't cover is that there is a setting on the `WebGLRenderer` <ide> called `physicallyCorrectLights`. It effects how light falls off as distance from light. <ide> It only affects `PointLight` and `SpotLight`. `RectAreaLight` does this automatically. <ide> <del>For lights though the basic idea is you don't set a distance for them to fade out, <del>and you don't set `intensity`. Instead you set the [`power`](PointLight.power) of <del>the light in lumens and then three.js will use physics calculations like real lights. <del>The units of three.js in this case are meters and a 60w light bulb would have <add>For lights though the basic idea is you don't set a distance for them to fade out, <add>and you don't set `intensity`. Instead you set the [`power`](PointLight.power) of <add>the light in lumens and then three.js will use physics calculations like real lights. <add>The units of three.js in this case are meters and a 60w light bulb would have <ide> around 800 lumens. There's also a [`decay`](PointLight.decay) property. It should <ide> be set to `2` for realistic decay. <ide> <ide> gui.add(light, 'power', 0, 2000); <ide> <ide> {{{example url="../threejs-lights-point-physically-correct.html" }}} <ide> <del>It's important to note each light you add to scene slows down how fast <add>It's important to note each light you add to the scene slows down how fast <ide> three.js renders the scene so you should always try to use as few as <del>possible to achieve your goals. <add>possible to achieve your goals. <ide> <ide> Next up let's go over [dealing with cameras](threejs-cameras.html). <ide>
1
PHP
PHP
fix failing test & simplify code
a3ddff4aa7b01a9abebc2b614a19f729d1554be8
<ide><path>lib/Cake/Test/Case/View/Helper/HtmlHelperTest.php <ide> public function testCrumbListFirstLink() { <ide> * @return void <ide> */ <ide> public function testCrumbListBootstrapStyle() { <del> $this->Html->addCrumb('Home', '/', array('class'=>'home')); <add> $this->Html->addCrumb('Home', '/', array('class' => 'home')); <ide> $this->Html->addCrumb('Library', '/lib'); <ide> $this->Html->addCrumb('Data'); <del> $result = $this->Html->getCrumbList( <del> array('class' => 'breadcrumb', 'separator' => '<span class="divider">/</span>', 'firstClass' => false, 'lastClass' => 'active') <del> ); <add> $result = $this->Html->getCrumbList(array( <add> 'class' => 'breadcrumb', <add> 'separator' => '<span class="divider">-</span>', <add> 'firstClass' => false, <add> 'lastClass' => 'active' <add> )); <add> debug($result); <ide> $this->assertTags( <ide> $result, <ide> array( <ide> array('ul' => array('class' => 'breadcrumb')), <ide> '<li', <del> array('a' => array('href' => '/')), 'Home', '/a', <del> array('span' =>array('class' => 'divider')), 'preg:/\//', '/span', <add> array('a' => array('class' => 'home', 'href' => '/')), 'Home', '/a', <add> array('span' =>array('class' => 'divider')), '-', '/span', <ide> '/li', <ide> '<li', <ide> array('a' => array('href' => '/lib')), 'Library', '/a', <del> array('span' => array('class' => 'divider')), 'preg:/\//', '/span', <add> array('span' => array('class' => 'divider')), '-', '/span', <ide> '/li', <ide> array('li' => array('class' => 'active')), 'Data', '/li', <ide> '/ul' <del> ), true <add> ) <ide> ); <ide> } <ide> <ide> public function testParseAttributeCompact() { <ide> $this->assertEquals('', $helper->parseAttributes(array('require' => false))); <ide> } <ide> <del>} <ide>\ No newline at end of file <add>} <ide><path>lib/Cake/View/Helper/HtmlHelper.php <ide> public function getCrumbList($options = array(), $startText = false) { <ide> $firstClass = $options['firstClass']; <ide> $lastClass = $options['lastClass']; <ide> $separator = $options['separator']; <del> unset($options['firstClass'], $options['lastClass'], $options['separator']); <add> unset($options['firstClass'], $options['lastClass'], $options['separator']); <add> <ide> $crumbs = $this->_prepareCrumbs($startText); <del> if (!empty($crumbs)) { <del> $result = ''; <del> $crumbCount = count($crumbs); <del> $ulOptions = $options; <del> foreach ($crumbs as $which => $crumb) { <del> $options = array(); <del> if (empty($crumb[1])) { <del> $elementContent = $crumb[0]; <del> } else { <del> $elementContent = $this->link($crumb[0], $crumb[1], $crumb[2]); <del> } <del> if (!$which) { <del> if ($firstClass !== false) { <del> $options['class'] = $firstClass; <del> } <del> } elseif ($which == $crumbCount - 1) { <del> if ($lastClass !== false) { <del> $options['class'] = $lastClass; <del> } <del> } <del> if (!empty($separator) && ($crumbCount - $which >= 2)) { <del> $elementContent .= $separator; <del> } <del> $result .= $this->tag('li', $elementContent, $options); <add> if (empty($crumbs)) { <add> return ''; <add> } <add> <add> $result = ''; <add> $crumbCount = count($crumbs); <add> $ulOptions = $options; <add> foreach ($crumbs as $which => $crumb) { <add> $options = array(); <add> if (empty($crumb[1])) { <add> $elementContent = $crumb[0]; <add> } else { <add> $elementContent = $this->link($crumb[0], $crumb[1], $crumb[2]); <ide> } <del> return $this->tag('ul', $result, $ulOptions); <del> } else { <del> return null; <add> if (!$which && $firstClass !== false) { <add> $options['class'] = $firstClass; <add> } elseif ($which == $crumbCount - 1 && $lastClass !== false) { <add> $options['class'] = $lastClass; <add> } <add> if (!empty($separator) && ($crumbCount - $which >= 2)) { <add> $elementContent .= $separator; <add> } <add> $result .= $this->tag('li', $elementContent, $options); <ide> } <add> return $this->tag('ul', $result, $ulOptions); <ide> } <ide> <ide> /** <ide> public function loadConfig($configFile, $path = null) { <ide> return $configs; <ide> } <ide> <del>} <ide>\ No newline at end of file <add>}
2
Text
Text
add docs about `batch()` api to performance faq
47d7b95e659493eb29420c127761322e764a81e7
<ide><path>docs/faq/Performance.md <ide> However, you _do_ need to create a copied and updated object for each level of n <ide> <ide> Redux notifies subscribers after each successfully dispatched action (i.e. an action reached the store and was handled by reducers). In some cases, it may be useful to cut down on the number of times subscribers are called, particularly if an action creator dispatches multiple distinct actions in a row. <ide> <del>If you use React, note that you can improve performance of multiple synchronous dispatches by wrapping them in `ReactDOM.unstable_batchedUpdates()`, but this API is experimental and may be removed in any React release so don't rely on it too heavily. Take a look at [redux-batched-actions](https://github.com/tshelburne/redux-batched-actions) (a higher-order reducer that lets you dispatch several actions as if it was one and “unpack” them in the reducer), [redux-batched-subscribe](https://github.com/tappleby/redux-batched-subscribe) (a store enhancer that lets you debounce subscriber calls for multiple dispatches), or [redux-batch](https://github.com/manaflair/redux-batch) (a store enhancer that handles dispatching an array of actions with a single subscriber notification). <add>There are several addons that add batching capabilities in various ways, like: [redux-batched-actions](https://github.com/tshelburne/redux-batched-actions) (a higher-order reducer that lets you dispatch several actions as if it was one and “unpack” them in the reducer), [redux-batched-subscribe](https://github.com/tappleby/redux-batched-subscribe) (a store enhancer that lets you debounce subscriber calls for multiple dispatches), or [redux-batch](https://github.com/manaflair/redux-batch) (a store enhancer that handles dispatching an array of actions with a single subscriber notification). <add> <add>For React-Redux specifically, starting in [React-Redux v7](https://github.com/reduxjs/react-redux/releases/tag/v7.0.1) a new `batch` public API is available to help minimize the number of React re-renders when dispatching actions outside of React event handlers. It wraps React's `unstable_batchedUpdate()` API, allows any React updates in an event loop tick to be batched together into a single render pass. React already uses this internally for its own event handler callbacks. This API is actually part of the renderer packages like ReactDOM and React Native, not the React core itself. <add> <add>Since React-Redux needs to work in both ReactDOM and React Native environments, we've taken care of importing this API from the correct renderer at build time for our own use. We also now re-export this function publicly ourselves, renamed to `batch()`. You can use it to ensure that multiple actions dispatched outside of React only result in a single render update, like this: <add> <add>``` <add>import { batch } from "react-redux"; <add> <add>function myThunk() { <add> return (dispatch, getState) => { <add> // should only result in one combined re-render, not two <add> batch(() => { <add> dispatch(increment()); <add> dispatch(increment()); <add> }) <add> } <add>} <add>``` <ide> <ide> #### Further information <ide> <ide> If you use React, note that you can improve performance of multiple synchronous <ide> - [#911: Batching actions](https://github.com/reduxjs/redux/issues/911) <ide> - [#1813: Use a loop to support dispatching arrays](https://github.com/reduxjs/redux/pull/1813) <ide> - [React Redux #263: Huge performance issue when dispatching hundreds of actions](https://github.com/reduxjs/react-redux/issues/263) <add>- [React-Redux #1177: Roadmap: v6, Context, Subscriptions, and Hooks](https://github.com/reduxjs/react-redux/issues/1177) <ide> <ide> **Libraries** <ide>
1
Python
Python
fix error in throttling when request.user is none
129890ab1bbbba2deb96b8e30675dfb1060d7615
<ide><path>rest_framework/throttling.py <ide> class AnonRateThrottle(SimpleRateThrottle): <ide> scope = 'anon' <ide> <ide> def get_cache_key(self, request, view): <del> if request.user.is_authenticated: <add> if request.user and request.user.is_authenticated: <ide> return None # Only throttle unauthenticated requests. <ide> <ide> return self.cache_format % { <ide> class UserRateThrottle(SimpleRateThrottle): <ide> scope = 'user' <ide> <ide> def get_cache_key(self, request, view): <del> if request.user.is_authenticated: <add> if request.user and request.user.is_authenticated: <ide> ident = request.user.pk <ide> else: <ide> ident = self.get_ident(request) <ide> def get_cache_key(self, request, view): <ide> Otherwise generate the unique cache key by concatenating the user id <ide> with the `.throttle_scope` property of the view. <ide> """ <del> if request.user.is_authenticated: <add> if request.user and request.user.is_authenticated: <ide> ident = request.user.pk <ide> else: <ide> ident = self.get_ident(request)
1
Java
Java
handle exceptions in annotation searches again
d757f739028c7608b0d870bf0e9f23b91e57298b
<ide><path>spring-core/src/main/java/org/springframework/core/annotation/AnnotationsScanner.java <ide> private static <C, R> R processClass(C context, Class<?> source, <ide> private static <C, R> R processClassInheritedAnnotations(C context, Class<?> source, <ide> SearchStrategy searchStrategy, AnnotationsProcessor<C, R> processor, @Nullable BiPredicate<C, Class<?>> classFilter) { <ide> <del> if (isWithoutHierarchy(source, searchStrategy)) { <del> return processElement(context, source, processor, classFilter); <del> } <del> Annotation[] relevant = null; <del> int remaining = Integer.MAX_VALUE; <del> int aggregateIndex = 0; <del> Class<?> root = source; <del> while (source != null && source != Object.class && remaining > 0 && <del> !hasPlainJavaAnnotationsOnly(source)) { <del> R result = processor.doWithAggregate(context, aggregateIndex); <del> if (result != null) { <del> return result; <del> } <del> if (isFiltered(source, context, classFilter)) { <del> continue; <del> } <del> Annotation[] declaredAnnotations = <del> getDeclaredAnnotations(context, source, classFilter, true); <del> if (relevant == null && declaredAnnotations.length > 0) { <del> relevant = root.getAnnotations(); <del> remaining = relevant.length; <add> try { <add> if (isWithoutHierarchy(source, searchStrategy)) { <add> return processElement(context, source, processor, classFilter); <ide> } <del> for (int i = 0; i < declaredAnnotations.length; i++) { <del> if (declaredAnnotations[i] != null) { <del> boolean isRelevant = false; <del> for (int relevantIndex = 0; relevantIndex < relevant.length; relevantIndex++) { <del> if (relevant[relevantIndex] != null && <del> declaredAnnotations[i].annotationType() == relevant[relevantIndex].annotationType()) { <del> isRelevant = true; <del> relevant[relevantIndex] = null; <del> remaining--; <del> break; <add> Annotation[] relevant = null; <add> int remaining = Integer.MAX_VALUE; <add> int aggregateIndex = 0; <add> Class<?> root = source; <add> while (source != null && source != Object.class && remaining > 0 && <add> !hasPlainJavaAnnotationsOnly(source)) { <add> R result = processor.doWithAggregate(context, aggregateIndex); <add> if (result != null) { <add> return result; <add> } <add> if (isFiltered(source, context, classFilter)) { <add> continue; <add> } <add> Annotation[] declaredAnnotations = <add> getDeclaredAnnotations(context, source, classFilter, true); <add> if (relevant == null && declaredAnnotations.length > 0) { <add> relevant = root.getAnnotations(); <add> remaining = relevant.length; <add> } <add> for (int i = 0; i < declaredAnnotations.length; i++) { <add> if (declaredAnnotations[i] != null) { <add> boolean isRelevant = false; <add> for (int relevantIndex = 0; relevantIndex < relevant.length; relevantIndex++) { <add> if (relevant[relevantIndex] != null && <add> declaredAnnotations[i].annotationType() == relevant[relevantIndex].annotationType()) { <add> isRelevant = true; <add> relevant[relevantIndex] = null; <add> remaining--; <add> break; <add> } <add> } <add> if (!isRelevant) { <add> declaredAnnotations[i] = null; <ide> } <del> } <del> if (!isRelevant) { <del> declaredAnnotations[i] = null; <ide> } <ide> } <add> result = processor.doWithAnnotations(context, aggregateIndex, source, declaredAnnotations); <add> if (result != null) { <add> return result; <add> } <add> source = source.getSuperclass(); <add> aggregateIndex++; <ide> } <del> result = processor.doWithAnnotations(context, aggregateIndex, source, declaredAnnotations); <del> if (result != null) { <del> return result; <del> } <del> source = source.getSuperclass(); <del> aggregateIndex++; <add> } <add> catch (Throwable ex) { <add> AnnotationUtils.handleIntrospectionFailure(source, ex); <ide> } <ide> return null; <ide> } <ide> private static <C, R> R processClassHierarchy(C context, Class<?> source, <ide> AnnotationsProcessor<C, R> processor, @Nullable BiPredicate<C, Class<?>> classFilter, <ide> boolean includeInterfaces, boolean includeEnclosing) { <ide> <del> int[] aggregateIndex = new int[] {0}; <del> return processClassHierarchy(context, aggregateIndex, source, processor, <add> return processClassHierarchy(context, new int[] {0}, source, processor, <ide> classFilter, includeInterfaces, includeEnclosing); <ide> } <ide> <ide> private static <C, R> R processClassHierarchy(C context, int[] aggregateIndex, C <ide> AnnotationsProcessor<C, R> processor, @Nullable BiPredicate<C, Class<?>> classFilter, <ide> boolean includeInterfaces, boolean includeEnclosing) { <ide> <del> R result = processor.doWithAggregate(context, aggregateIndex[0]); <del> if (result != null) { <del> return result; <del> } <del> if (hasPlainJavaAnnotationsOnly(source)) { <del> return null; <del> } <del> Annotation[] annotations = getDeclaredAnnotations(context, source, classFilter, false); <del> result = processor.doWithAnnotations(context, aggregateIndex[0], source, annotations); <del> if (result != null) { <del> return result; <del> } <del> aggregateIndex[0]++; <del> if (includeInterfaces) { <del> for (Class<?> interfaceType : source.getInterfaces()) { <del> R interfacesResult = processClassHierarchy(context, aggregateIndex, <add> try { <add> R result = processor.doWithAggregate(context, aggregateIndex[0]); <add> if (result != null) { <add> return result; <add> } <add> if (hasPlainJavaAnnotationsOnly(source)) { <add> return null; <add> } <add> Annotation[] annotations = getDeclaredAnnotations(context, source, classFilter, false); <add> result = processor.doWithAnnotations(context, aggregateIndex[0], source, annotations); <add> if (result != null) { <add> return result; <add> } <add> aggregateIndex[0]++; <add> if (includeInterfaces) { <add> for (Class<?> interfaceType : source.getInterfaces()) { <add> R interfacesResult = processClassHierarchy(context, aggregateIndex, <ide> interfaceType, processor, classFilter, true, includeEnclosing); <del> if (interfacesResult != null) { <del> return interfacesResult; <add> if (interfacesResult != null) { <add> return interfacesResult; <add> } <ide> } <ide> } <del> } <del> Class<?> superclass = source.getSuperclass(); <del> if (superclass != Object.class && superclass != null) { <del> R superclassResult = processClassHierarchy(context, aggregateIndex, <add> Class<?> superclass = source.getSuperclass(); <add> if (superclass != Object.class && superclass != null) { <add> R superclassResult = processClassHierarchy(context, aggregateIndex, <ide> superclass, processor, classFilter, includeInterfaces, includeEnclosing); <del> if (superclassResult != null) { <del> return superclassResult; <add> if (superclassResult != null) { <add> return superclassResult; <add> } <ide> } <del> } <del> if (includeEnclosing) { <del> // Since merely attempting to load the enclosing class may result in <del> // automatic loading of sibling nested classes that in turn results <del> // in an exception such as NoClassDefFoundError, we wrap the following <del> // in its own dedicated try-catch block in order not to preemptively <del> // halt the annotation scanning process. <del> try { <del> Class<?> enclosingClass = source.getEnclosingClass(); <del> if (enclosingClass != null) { <del> R enclosingResult = processClassHierarchy(context, aggregateIndex, <del> enclosingClass, processor, classFilter, includeInterfaces, true); <del> if (enclosingResult != null) { <del> return enclosingResult; <add> if (includeEnclosing) { <add> // Since merely attempting to load the enclosing class may result in <add> // automatic loading of sibling nested classes that in turn results <add> // in an exception such as NoClassDefFoundError, we wrap the following <add> // in its own dedicated try-catch block in order not to preemptively <add> // halt the annotation scanning process. <add> try { <add> Class<?> enclosingClass = source.getEnclosingClass(); <add> if (enclosingClass != null) { <add> R enclosingResult = processClassHierarchy(context, aggregateIndex, <add> enclosingClass, processor, classFilter, includeInterfaces, true); <add> if (enclosingResult != null) { <add> return enclosingResult; <add> } <ide> } <ide> } <del> } <del> catch (Throwable ex) { <del> AnnotationUtils.handleIntrospectionFailure(source, ex); <add> catch (Throwable ex) { <add> AnnotationUtils.handleIntrospectionFailure(source, ex); <add> } <ide> } <ide> } <add> catch (Throwable ex) { <add> AnnotationUtils.handleIntrospectionFailure(source, ex); <add> } <ide> return null; <ide> } <ide> <ide> private static <C, R> R processMethod(C context, Method source, <ide> private static <C, R> R processMethodInheritedAnnotations(C context, Method source, <ide> AnnotationsProcessor<C, R> processor, @Nullable BiPredicate<C, Class<?>> classFilter) { <ide> <del> R result = processor.doWithAggregate(context, 0); <del> return (result != null ? result : <add> try { <add> R result = processor.doWithAggregate(context, 0); <add> return (result != null ? result : <ide> processMethodAnnotations(context, 0, source, processor, classFilter)); <add> } <add> catch (Throwable ex) { <add> AnnotationUtils.handleIntrospectionFailure(source, ex); <add> } <add> return null; <ide> } <ide> <ide> @Nullable <ide> private static <C, R> R processMethodHierarchy(C context, int[] aggregateIndex, <ide> @Nullable BiPredicate<C, Class<?>> classFilter, Method rootMethod, <ide> boolean includeInterfaces) { <ide> <del> R result = processor.doWithAggregate(context, aggregateIndex[0]); <del> if (result != null) { <del> return result; <del> } <del> if (hasPlainJavaAnnotationsOnly(sourceClass)) { <del> return null; <del> } <del> boolean calledProcessor = false; <del> if (sourceClass == rootMethod.getDeclaringClass()) { <del> result = processMethodAnnotations(context, aggregateIndex[0], <del> rootMethod, processor, classFilter); <del> calledProcessor = true; <add> try { <add> R result = processor.doWithAggregate(context, aggregateIndex[0]); <ide> if (result != null) { <ide> return result; <ide> } <del> } <del> else { <del> for (Method candidateMethod : getBaseTypeMethods(context, sourceClass, classFilter)) { <del> if (candidateMethod != null && isOverride(rootMethod, candidateMethod)) { <del> result = processMethodAnnotations(context, aggregateIndex[0], <add> if (hasPlainJavaAnnotationsOnly(sourceClass)) { <add> return null; <add> } <add> boolean calledProcessor = false; <add> if (sourceClass == rootMethod.getDeclaringClass()) { <add> result = processMethodAnnotations(context, aggregateIndex[0], <add> rootMethod, processor, classFilter); <add> calledProcessor = true; <add> if (result != null) { <add> return result; <add> } <add> } <add> else { <add> for (Method candidateMethod : getBaseTypeMethods(context, sourceClass, classFilter)) { <add> if (candidateMethod != null && isOverride(rootMethod, candidateMethod)) { <add> result = processMethodAnnotations(context, aggregateIndex[0], <ide> candidateMethod, processor, classFilter); <del> calledProcessor = true; <del> if (result != null) { <del> return result; <add> calledProcessor = true; <add> if (result != null) { <add> return result; <add> } <ide> } <ide> } <ide> } <del> } <del> if (Modifier.isPrivate(rootMethod.getModifiers())) { <del> return null; <del> } <del> if (calledProcessor) { <del> aggregateIndex[0]++; <del> } <del> if (includeInterfaces) { <del> for (Class<?> interfaceType : sourceClass.getInterfaces()) { <del> R interfacesResult = processMethodHierarchy(context, aggregateIndex, <add> if (Modifier.isPrivate(rootMethod.getModifiers())) { <add> return null; <add> } <add> if (calledProcessor) { <add> aggregateIndex[0]++; <add> } <add> if (includeInterfaces) { <add> for (Class<?> interfaceType : sourceClass.getInterfaces()) { <add> R interfacesResult = processMethodHierarchy(context, aggregateIndex, <ide> interfaceType, processor, classFilter, rootMethod, true); <del> if (interfacesResult != null) { <del> return interfacesResult; <add> if (interfacesResult != null) { <add> return interfacesResult; <add> } <ide> } <ide> } <del> } <del> Class<?> superclass = sourceClass.getSuperclass(); <del> if (superclass != Object.class && superclass != null) { <del> R superclassResult = processMethodHierarchy(context, aggregateIndex, <add> Class<?> superclass = sourceClass.getSuperclass(); <add> if (superclass != Object.class && superclass != null) { <add> R superclassResult = processMethodHierarchy(context, aggregateIndex, <ide> superclass, processor, classFilter, rootMethod, includeInterfaces); <del> if (superclassResult != null) { <del> return superclassResult; <add> if (superclassResult != null) { <add> return superclassResult; <add> } <ide> } <ide> } <add> catch (Throwable ex) { <add> AnnotationUtils.handleIntrospectionFailure(rootMethod, ex); <add> } <ide> return null; <ide> } <ide> <ide> private static <C, R> R processMethodAnnotations(C context, int aggregateIndex, <ide> private static <C, R> R processElement(C context, AnnotatedElement source, <ide> AnnotationsProcessor<C, R> processor, @Nullable BiPredicate<C, Class<?>> classFilter) { <ide> <del> R result = processor.doWithAggregate(context, 0); <del> return (result != null ? result : processor.doWithAnnotations( <add> try { <add> R result = processor.doWithAggregate(context, 0); <add> return (result != null ? result : processor.doWithAnnotations( <ide> context, 0, source, getDeclaredAnnotations(context, source, classFilter, false))); <add> } <add> catch (Throwable ex) { <add> AnnotationUtils.handleIntrospectionFailure(source, ex); <add> } <add> return null; <ide> } <ide> <ide> private static <C, R> Annotation[] getDeclaredAnnotations(C context,
1
Python
Python
handle any exception in __repr__
0988db799d07b37b318435ee5fe976f4b237e3d7
<ide><path>celery/utils/saferepr.py <ide> from __future__ import absolute_import, unicode_literals <ide> <ide> import sys <add>import traceback <ide> <ide> from collections import deque, namedtuple <ide> <ide> class range_t(object): # noqa <ide> pass <ide> <add>#: Node representing literal text. <add>#: - .value: is the literal text value <add>#: - .truncate: specifies if this text can be truncated, for things like <add>#: LIT_DICT_END this will be False, as we always display <add>#: the ending brackets, e.g: [[[1, 2, 3, ...,], ..., ]] <add>#: - .direction: If +1 the current level is increment by one, <add>#: if -1 the current level is decremented by one, and <add>#: if 0 the current level is unchanged. <ide> _literal = namedtuple('_literal', ('value', 'truncate', 'direction')) <add> <add>#: Node representing a dictionary key. <ide> _key = namedtuple('_key', ('value',)) <add> <add>#: Node representing quoted text, e.g. a string value. <ide> _quoted = namedtuple('_quoted', ('value',)) <add> <add> <add>#: Recursion protection. <ide> _dirty = namedtuple('_dirty', ('objid',)) <ide> <add>#: Types that are repsented as chars. <ide> chars_t = (bytes, text_t) <add> <add>#: Types that are regarded as safe to call repr on. <ide> safe_t = (Number,) <add> <add>#: Set types. <ide> set_t = (frozenset, set) <ide> <ide> LIT_DICT_START = _literal('{', False, +1) <ide> class range_t(object): # noqa <ide> <ide> <ide> def saferepr(o, maxlen=None, maxlevels=3, seen=None): <add> # type: (Any, int, int, Set) -> str <ide> """Safe version of :func:`repr`. <ide> <ide> Warning: <ide> def saferepr(o, maxlen=None, maxlevels=3, seen=None): <ide> def _chaindict(mapping, <ide> LIT_DICT_KVSEP=LIT_DICT_KVSEP, <ide> LIT_LIST_SEP=LIT_LIST_SEP): <add> # type: (Dict, _literal, _literal) -> Iterator[Any] <ide> size = len(mapping) <ide> for i, (k, v) in enumerate(items(mapping)): <ide> yield _key(k) <ide> def _chaindict(mapping, <ide> <ide> <ide> def _chainlist(it, LIT_LIST_SEP=LIT_LIST_SEP): <add> # type: (List) -> Iterator[Any] <ide> size = len(it) <ide> for i, v in enumerate(it): <ide> yield v <ide> def _chainlist(it, LIT_LIST_SEP=LIT_LIST_SEP): <ide> <ide> <ide> def _repr_empty_set(s): <add> # type: (Set) -> str <ide> return '%s()' % (type(s).__name__,) <ide> <ide> <ide> def _safetext(val): <add> # type: (AnyStr) -> str <ide> if isinstance(val, bytes): <ide> try: <ide> val.encode('utf-8') <ide> def _safetext(val): <ide> <ide> <ide> def _format_binary_bytes(val, maxlen, ellipsis='...'): <add> # type: (bytes, int, str) -> str <ide> if maxlen and len(val) > maxlen: <ide> # we don't want to copy all the data, just take what we need. <ide> chunk = memoryview(val)[:maxlen].tobytes() <ide> def _format_binary_bytes(val, maxlen, ellipsis='...'): <ide> <ide> <ide> def _repr_binary_bytes(val): <add> # type: (bytes) -> str <ide> try: <ide> return val.decode('utf-8') <ide> except UnicodeDecodeError: <ide> def _repr_binary_bytes(val): <ide> <ide> <ide> def _format_chars(val, maxlen): <add> # type: (AnyStr, int) -> str <ide> if IS_PY3 and isinstance(val, bytes): # pragma: no cover <ide> return _format_binary_bytes(val, maxlen) <ide> else: <ide> return "'{0}'".format(truncate(val, maxlen)) <ide> <ide> <add>def _repr(obj): <add> # type: (Any) -> str <add> try: <add> return repr(obj) <add> except Exception as exc: <add> return '<Unrepresentable {0!r}{1:#x}: {2!r} {3!r}>'.format( <add> type(obj), id(obj), exc, '\n'.join(traceback.format_stack())) <add> <add> <ide> def _saferepr(o, maxlen=None, maxlevels=3, seen=None): <add> # type: (Any, int, int, Set) -> str <ide> stack = deque([iter([o])]) <ide> for token, it in reprstream(stack, seen=seen, maxlevels=maxlevels): <ide> if maxlen is not None and maxlen <= 0: <ide> def _saferepr(o, maxlen=None, maxlevels=3, seen=None): <ide> <ide> <ide> def _reprseq(val, lit_start, lit_end, builtin_type, chainer): <add> # type: (Sequence, _literal, _literal, Any, Any) -> Tuple[Any, ...] <ide> if type(val) is builtin_type: # noqa <ide> return lit_start, lit_end, chainer(val) <ide> return ( <ide> def _reprseq(val, lit_start, lit_end, builtin_type, chainer): <ide> <ide> def reprstream(stack, seen=None, maxlevels=3, level=0, isinstance=isinstance): <ide> """Streaming repr, yielding tokens.""" <add> # type: (deque, Set, int, int, Callable) -> Iterator[Any] <ide> seen = seen or set() <ide> append = stack.append <ide> popleft = stack.popleft <ide> def reprstream(stack, seen=None, maxlevels=3, level=0, isinstance=isinstance): <ide> elif isinstance(val, _key): <ide> yield val, it <ide> elif isinstance(val, Decimal): <del> yield repr(val), it <add> yield _repr(val), it <ide> elif isinstance(val, safe_t): <ide> yield text_t(val), it <ide> elif isinstance(val, chars_t): <ide> yield _quoted(val), it <ide> elif isinstance(val, range_t): # pragma: no cover <del> yield repr(val), it <add> yield _repr(val), it <ide> else: <ide> if isinstance(val, set_t): <ide> if not val: <ide> def reprstream(stack, seen=None, maxlevels=3, level=0, isinstance=isinstance): <ide> LIT_LIST_START, LIT_LIST_END, _chainlist(val)) <ide> else: <ide> # other type of object <del> yield repr(val), it <add> yield _repr(val), it <ide> continue <ide> <ide> if maxlevels and level >= maxlevels: <ide><path>t/unit/utils/test_saferepr.py <ide> def test_binary_bytes__long(self): <ide> assert result.endswith("...'") <ide> else: # Python 3.4 <ide> assert result <add> <add> def test_repr_raises(self): <add> class O(object): <add> def __repr__(self): <add> raise KeyError('foo') <add> assert 'Unrepresentable' in saferepr(O())
2
Javascript
Javascript
remove unused variable. thanks, @fponticelli!
dab913575c2c1d26783cc1f1a5a7989c7a65fa5c
<ide><path>d3.js <ide> function d3_selection(groups) { <ide> <ide> if (join) { <ide> var nodeByKey = {}, <del> exitData = [], <ide> keys = [], <ide> key, <ide> j = groupData.length; <ide><path>d3.min.js <del>(function(){function bU(){return"circle"}function bT(){return 64}function bR(a){return a.endAngle}function bQ(a){return a.startAngle}function bP(a){return a.radius}function bO(a){return a.target}function bN(a){return a.source}function bM(){return 0}function bL(a,b,c){a.push("C",bH(bI,b),",",bH(bI,c),",",bH(bJ,b),",",bH(bJ,c),",",bH(bK,b),",",bH(bK,c))}function bH(a,b){return a[0]*b[0]+a[1]*b[1]+a[2]*b[2]+a[3]*b[3]}function bG(a){var b,c=-1,d=a.length,e=d+4,f,g=[],h=[];while(++c<4)f=a[c%d],g.push(f[0]),h.push(f[1]);b=[bH(bK,g),",",bH(bK,h)],--c;while(++c<e)f=a[c%d],g.shift(),g.push(f[0]),h.shift(),h.push(f[1]),bL(b,g,h);return b.join("")}function bF(a){if(a.length<3)return by(a);var b=[],c=1,d=a.length,e=a[0],f=e[0],g=e[1],h=[f,f,f,(e=a[1])[0]],i=[g,g,g,e[1]];b.push(f,",",g),bL(b,h,i);while(++c<d)e=a[c],h.shift(),h.push(e[0]),i.shift(),i.push(e[1]),bL(b,h,i);c=-1;while(++c<2)h.shift(),h.push(e[0]),i.shift(),i.push(e[1]),bL(b,h,i);return b.join("")}function bE(a,b){var c=[],d=(1-b)/2,e=a[0],f=a[1],g=a[2],h=2,i=a.length;while(++h<i)c.push([d*(g[0]-e[0]),d*(g[1]-e[1])]),e=f,f=g,g=a[h];c.push([d*(g[0]-e[0]),d*(g[1]-e[1])]);return c}function bD(a,b){if(b.length<1||a.length!=b.length&&a.length!=b.length+2)return by(a);var c=a.length!=b.length,d="",e=a[0],f=a[1],g=b[0],h=g,i=1;c&&(d+="Q"+(f[0]-g[0]*2/3)+","+(f[1]-g[1]*2/3)+","+f[0]+","+f[1],e=a[1],i=2);if(b.length>1){h=b[1],f=a[i],i++,d+="C"+(e[0]+g[0])+","+(e[1]+g[1])+","+(f[0]-h[0])+","+(f[1]-h[1])+","+f[0]+","+f[1];for(var j=2;j<b.length;j++,i++)f=a[i],h=b[j],d+="S"+(f[0]-h[0])+","+(f[1]-h[1])+","+f[0]+","+f[1]}if(c){var k=a[i];d+="Q"+(f[0]+h[0]*2/3)+","+(f[1]+h[1]*2/3)+","+k[0]+","+k[1]}return d}function bC(a,b,c){return a.length<3?by(a):a[0]+bD(a,bE(a,b))}function bB(a,b){return a.length<3?by(a):a[0]+bD(a,bE([a[a.length-2]].concat(a,[a[1]]),b))}function bA(a){var b=[],c=0,d=a.length,e=a[0];b.push(e[0],",",e[1]);while(++c<d)b.push("H",(e=a[c])[0],"V",e[1]);return b.join("")}function bz(a){var b=[],c=0,d=a.length,e=a[0];b.push(e[0],",",e[1]);while(++c<d)b.push("V",(e=a[c])[1],"H",e[0]);return b.join("")}function by(a){var b=[],c=0,d=a.length,e=a[0];b.push(e[0],",",e[1]);while(++c<d)b.push("L",(e=a[c])[0],",",e[1]);return b.join("")}function bw(a){return a[1]}function bv(a){return a[0]}function bu(a,b,c,d){var e=[],f=-1,g=b.length,h=typeof c=="function",i=typeof d=="function",j;if(h&&i)while(++f<g)e.push([c.call(a,j=b[f],f),d.call(a,j,f)]);else if(h)while(++f<g)e.push([c.call(a,b[f],f),d]);else if(i)while(++f<g)e.push([c,d.call(a,b[f],f)]);else while(++f<g)e.push([c,d]);return e}function bt(a){return a.endAngle}function bs(a){return a.startAngle}function br(a){return a.outerRadius}function bq(a){return a.innerRadius}function bj(a){return function(b){return-Math.pow(-b,a)}}function bi(a){return function(b){return Math.pow(b,a)}}function bh(a){return-Math.log(-a)/Math.LN10}function bg(a){return Math.log(a)/Math.LN10}function be(){var a=null,b=$;while(b)b=b.flush?a?a.next=b.next:$=b.next:(a=b).next;a||(ba=0)}function bd(){var a,b=Date.now(),c=null,d=$;while(d)a=b-d.then,a>d.delay&&(d.flush=d.callback(a)),d=(c=d).next;be(),ba&&bf(bd)}function bc(){ba=1,_=0,bf(bd)}function bb(a,b){var c=Date.now(),d=!1,e=c+b,f,g=$;if(!!isFinite(b)){while(g){if(g.callback==a)g.then=c,g.delay=b,d=!0;else{var h=g.then+g.delay;h<e&&(e=h)}f=g,g=g.next}d||($={callback:a,then:c,delay:b,next:$}),ba||(clearTimeout(_),_=setTimeout(bc,Math.max(24,e-c)))}}function Z(a){return typeof a=="function"?function(b,c,d){return d3.interpolate(d,String(a.call(this,b,c)))}:(a=String(a),function(b,c,d){return d3.interpolate(d,a)})}function Y(a){function n(b){var h=!0,l=-1;a.each(function(){if(i[++l]!=2){var a=(b-j[l])/k[l],n=this.__transition__,o,p,q=e[l];if(a<1){h=!1;if(a<0)return}else a=1;if(i[l]){if(!n||n.active!=c){i[l]=2;return}}else{if(!n||n.active>c){i[l]=2;return}i[l]=1,g.start.dispatch.apply(this,arguments),q=e[l]={},n.active=c;for(p in d)q[p]=d[p].apply(this,arguments)}o=m(a);for(p in d)q[p].call(this,o);if(a==1){i[l]=2;if(n.active==c){var r=n.owner;r==c&&(delete this.__transition__,f&&this.parentNode.removeChild(this)),X=c,g.end.dispatch.apply(this,arguments),X=0,n.owner=r}}}});return h}var b={},c=X||++W,d={},e=[],f=!1,g=d3.dispatch("start","end"),i=[],j=[],k=[],l,m=d3.ease("cubic-in-out");a.each(function(){(this.__transition__||(this.__transition__={})).owner=c}),b.delay=function(c){var d=Infinity,e=-1;typeof c=="function"?a.each(function(a,b){var f=j[++e]=+c.apply(this,arguments);f<d&&(d=f)}):(d=+c,a.each(function(a,b){j[++e]=d})),bb(n,d);return b},b.duration=function(c){var d=-1;typeof c=="function"?(l=0,a.each(function(a,b){var e=k[++d]=+c.apply(this,arguments);e>l&&(l=e)})):(l=+c,a.each(function(a,b){k[++d]=l}));return b},b.ease=function(a){m=typeof a=="function"?a:d3.ease.apply(d3,arguments);return b},b.attrTween=function(a,c){function f(b,d){var e=c.call(this,b,d,this.getAttributeNS(a.space,a.local));return function(b){this.setAttributeNS(a.space,a.local,e(b))}}function e(b,d){var e=c.call(this,b,d,this.getAttribute(a));return function(b){this.setAttribute(a,e(b))}}d["attr."+a]=a.local?f:e;return b},b.attr=function(a,c){return b.attrTween(a,Z(c))},b.styleTween=function(a,c,e){function f(b,d){var f=c.call(this,b,d,window.getComputedStyle(this,null).getPropertyValue(a));return function(b){this.style.setProperty(a,f(b),e)}}arguments.length<3&&(e=null),d["style."+a]=f;return b},b.style=function(a,c,d){arguments.length<3&&(d=null);return b.styleTween(a,Z(c),d)},b.select=function(b){var c,d=Y(a.select(b)).ease(m);c=-1,d.delay(function(a,b){return j[++c]}),c=-1,d.duration(function(a,b){return k[++c]});return d},b.selectAll=function(b){var c,d=Y(a.selectAll(b)).ease(m);c=-1,d.delay(function(a,b){return j[b?c:++c]}),c=-1,d.duration(function(a,b){return k[b?c:++c]});return d},b.remove=function(){f=!0;return b},b.each=function(a,c){g[a].add(c);return b},b.call=h;return b.delay(0).duration(250)}function V(a){return{__data__:a}}function U(a){arguments.length||(a=d3.ascending);return function(b,c){return a(b&&b.__data__,c&&c.__data__)}}function T(a){function b(b){var c=[],d,e,f,g;for(var h=0,i=a.length;h<i;h++){f=a[h],c.push(d=[]),d.parentNode=f.parentNode;for(var j=0,k=f.length;j<k;j++)(g=f[j])?(d.push(e=b(f.parentNode)),e.__data__=g.__data__):d.push(null)}return S(c)}a.append=function(a){function d(b){return b.appendChild(document.createElementNS(a.space,a.local))}function c(b){return b.appendChild(document.createElement(a))}a=d3.ns.qualify(a);return b(a.local?d:c)},a.insert=function(a,c){function e(b){return b.insertBefore(document.createElementNS(a.space,a.local),P(c,b))}function d(b){return b.insertBefore(document.createElement(a),P(c,b))}a=d3.ns.qualify(a);return b(a.local?e:d)};return a}function S(a){function d(b){for(var c=0,d=a.length;c<d;c++){var e=a[c];for(var f=0,g=e.length;f<g;f++){var h=e[f];if(h)return b.call(h,h.__data__,f)}}return null}function c(b){var c=[],d,e,f;for(var g=0,h=a.length;g<h;g++){e=a[g];for(var i=0,j=e.length;i<j;i++)if(f=e[i])c.push(d=b(f)),d.parentNode=f}return S(c)}function b(b){var c=[],d,e,f,g;for(var h=0,i=a.length;h<i;h++){f=a[h],c.push(d=[]),d.parentNode=f.parentNode;for(var j=0,k=f.length;j<k;j++)(g=f[j])?(d.push(e=b(g)),e&&"__data__"in g&&(e.__data__=g.__data__)):d.push(null)}return S(c)}a.select=function(a){return b(function(b){return P(a,b)})},a.selectAll=function(a){return c(function(b){return Q(a,b)})},a.filter=function(b){var c=[],d,e,f;for(var g=0,h=a.length;g<h;g++){e=a[g],c.push(d=[]),d.parentNode=e.parentNode;for(var i=0,j=e.length;i<j;i++)(f=e[i])&&b.call(f,f.__data__,i)&&d.push(f)}return S(c)},a.map=function(b){var c,d;for(var e=0,f=a.length;e<f;e++){c=a[e];for(var g=0,h=c.length;g<h;g++)if(d=c[g])d.__data__=b.call(d,d.__data__,g)}return a},a.data=function(b,c){function g(a,b){var g=0,h=a.length,i=b.length,j=Math.min(h,i),k=Math.max(h,i),l=[],m=[],n=[],o,p;if(c){var q={},r=[],s=[],t,u=b.length;for(g=0;g<h;g++)t=c.call(o=a[g],o.__data__,g),t in q?n[u++]=a[g]:q[t]=o,s.push(t);for(g=0;g<i;g++)o=q[t=c.call(b,p=b[g],g)],o?(o.__data__=p,l[g]=o,m[g]=n[g]=null):(m[g]=V(p),l[g]=n[g]=null),delete q[t];for(g=0;g<h;g++)s[g]in q&&(n[g]=a[g])}else{for(;g<j;g++)o=a[g],p=b[g],o?(o.__data__=p,l[g]=o,m[g]=n[g]=null):(m[g]=V(p),l[g]=n[g]=null);for(;g<i;g++)m[g]=V(b[g]),l[g]=n[g]=null;for(;g<k;g++)n[g]=a[g],m[g]=l[g]=null}m.parentNode=l.parentNode=n.parentNode=a.parentNode,d.push(m),e.push(l),f.push(n)}var d=[],e=[],f=[],h=-1,i=a.length,j;if(typeof b=="function")while(++h<i)g(j=a[h],b.call(j,j.parentNode.__data__,h));else while(++h<i)g(j=a[h],b);var k=S(e);k.enter=function(){return T(d)},k.exit=function(){return S(f)};return k},a.each=function(b){for(var c=0,d=a.length;c<d;c++){var e=a[c];for(var f=0,g=e.length;f<g;f++){var h=e[f];h&&b.call(h,h.__data__,f)}}return a},a.empty=function(){return!d(function(){return!0})},a.node=function(){return d(function(){return this})},a.attr=function(b,c){function j(){var a=c.apply(this,arguments);a==null?this.removeAttributeNS(b.space,b.local):this.setAttributeNS(b.space,b.local,a)}function i(){var a=c.apply(this,arguments);a==null?this.removeAttribute(b):this.setAttribute(b,a)}function h(){this.setAttributeNS(b.space,b.local,c)}function g(){this.setAttribute(b,c)}function f(){this.removeAttributeNS(b.space,b.local)}function e(){this.removeAttribute(b)}b=d3.ns.qualify(b);if(arguments.length<2)return d(b.local?function(){return this.getAttributeNS(b.space,b.local)}:function(){return this.getAttribute(b)});return a.each(c==null?b.local?f:e:typeof c=="function"?b.local?j:i:b.local?h:g)},a.classed=function(b,c){function i(){(c.apply(this,arguments)?f:h).call(this)}function h(){var a=g(this.className.replace(e," "));this.className=a.length?a:null}function f(){var a=this.className;e.lastIndex=0,e.test(a)||(this.className=g(a+" "+b))}var e=new RegExp("(^|\\s+)"+d3.requote(b)+"(\\s+|$)","g");if(arguments.length<2)return d(function(){e.lastIndex=0;return e.test(this.className)});return a.each(typeof c=="function"?i:c?f:h)},a.style=function(b,c,e){function h(){var a=c.apply(this,arguments);a==null?this.style.removeProperty(b):this.style.setProperty(b,a,e)}function g(){this.style.setProperty(b,c,e)}function f(){this.style.removeProperty(b)}arguments.length<3&&(e=null);if(arguments.length<2)return d(function(){return window.getComputedStyle(this,null).getPropertyValue(b)});return a.each(c==null?f:typeof c=="function"?h:g)},a.property=function(b,c){function g(){var a=c.apply(this,arguments);a==null?delete this[b]:this[b]=a}function f(){this[b]=c}function e(){delete this[b]}b=d3.ns.qualify(b);if(arguments.length<2)return d(function(){return this[b]});return a.each(c==null?e:typeof c=="function"?g:f)},a.text=function(b){function f(){var a=b.apply(this,arguments);a!=null&&this.appendChild(document.createTextNode(a))}function e(){this.appendChild(document.createTextNode(b))}function c(){while(this.lastChild)this.removeChild(this.lastChild)}if(arguments.length<1)return d(function(){return this.textContent});a.each(c);return b==null?a:a.each(typeof b=="function"?f:e)},a.html=function(b){function e(){this.innerHTML=b.apply(this,arguments)}function c(){this.innerHTML=b}if(arguments.length<1)return d(function(){return this.innerHTML});return a.each(typeof b=="function"?e:c)},a.append=function(a){function d(b){return b.appendChild(document.createElementNS(a.space,a.local))}function c(b){return b.appendChild(document.createElement(a))}a=d3.ns.qualify(a);return b(a.local?d:c)},a.insert=function(a,c){function e(b){return b.insertBefore(document.createElementNS(a.space,a.local),P(c,b))}function d(b){return b.insertBefore(document.createElement(a),P(c,b))}a=d3.ns.qualify(a);return b(a.local?e:d)},a.remove=function(){return a.each(function(){var a=this.parentNode;a&&a.removeChild(this)})},a.sort=function(b){b=U.apply(this,arguments);for(var c=0,d=a.length;c<d;c++){var e=a[c];e.sort(b);for(var f=1,g=e.length,h=e[0];f<g;f++){var i=e[f];i&&(h&&h.parentNode.insertBefore(i,h.nextSibling),h=i)}}return a},a.on=function(b,c){var d=b.indexOf("."),e=d==-1?b:b.substring(0,d),f="__on"+b;return a.each(function(a,b){function d(d){var e=d3.event;d3.event=d;try{c.call(this,a,b)}finally{d3.event=e}}this[f]&&this.removeEventListener(e,this[f],!1),c&&this.addEventListener(e,this[f]=d,!1)})},a.transition=function(){return Y(a)},a.call=h;return a}function O(a,b,c){function g(a){return Math.round(f(a)*255)}function f(a){a>360?a-=360:a<0&&(a+=360);if(a<60)return d+(e-d)*a/60;if(a<180)return e;if(a<240)return d+(e-d)*(240-a)/60;return d}var d,e;a=a%360,a<0&&(a+=360),b=b<0?0:b>1?1:b,c=c<0?0:c>1?1:c,e=c<=.5?c*(1+b):c+b-c*b,d=2*c-e;return E(g(a+120),g(a),g(a-120))}function N(){return"hsl("+this.h+","+this.s*100+"%,"+this.l*100+"%)"}function M(a,b,c){return{h:a,s:b,l:c,toString:N}}function J(a){var b=parseFloat(a);return a.charAt(a.length-1)=="%"?Math.round(b*2.55):b}function I(a,b,c){var d=Math.min(a/=255,b/=255,c/=255),e=Math.max(a,b,c),f=e-d,g,h,i=(e+d)/2;f?(h=i<.5?f/(e+d):f/(2-e-d),a==e?g=(b-c)/f+(b<c?6:0):b==e?g=(c-a)/f+2:g=(a-b)/f+4,g*=60):h=g=0;return M(g,h,i)}function H(a,b,c){var d=0,e=0,f=0,g,h,i;g=/([a-z]+)\((.*)\)/i.exec(a);if(g){h=g[2].split(",");switch(g[1]){case"hsl":return c(parseFloat(h[0]),parseFloat(h[1])/100,parseFloat(h[2])/100);case"rgb":return b(J(h[0]),J(h[1]),J(h[2]))}}if(i=K[a])return b(i.r,i.g,i.b);a!=null&&a.charAt(0)=="#"&&(a.length==4?(d=a.charAt(1),d+=d,e=a.charAt(2),e+=e,f=a.charAt(3),f+=f):a.length==7&&(d=a.substring(1,3),e=a.substring(3,5),f=a.substring(5,7)),d=parseInt(d,16),e=parseInt(e,16),f=parseInt(f,16));return b(d,e,f)}function G(a){return a<16?"0"+a.toString(16):a.toString(16)}function F(){return"#"+G(this.r)+G(this.g)+G(this.b)}function E(a,b,c){return{r:a,g:b,b:c,toString:F}}function D(a){return a in C||/\bcolor\b/.test(a)?d3.interpolateRgb:d3.interpolate}function z(a){return a<1/2.75?7.5625*a*a:a<2/2.75?7.5625*(a-=1.5/2.75)*a+.75:a<2.5/2.75?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375}function y(a){a||(a=1.70158);return function(b){return b*b*((a+1)*b-a)}}function x(a,b){var c;arguments.length<2&&(b=.45),arguments.length<1?(a=1,c=b/4):c=b/(2*Math.PI)*Math.asin(1/a);return function(d){return 1+a*Math.pow(2,10*-d)*Math.sin((d-c)*2*Math.PI/b)}}function w(a){return 1-Math.sqrt(1-a*a)}function v(a){return a?Math.pow(2,10*(a-1))-.001:0}function u(a){return 1-Math.cos(a*Math.PI/2)}function t(a){return function(b){return Math.pow(b,a)}}function s(a){return a}function r(a){return function(b){return.5*(b<.5?a(2*b):2-a(2-2*b))}}function q(a){return function(b){return 1-a(1-b)}}function l(a){var b=a.lastIndexOf("."),c=b>=0?a.substring(b):(b=a.length,""),d=[];while(b>0)d.push(a.substring(b-=3,b+3));return d.reverse().join(",")+c}function j(a){var b={},c=[];b.add=function(a){for(var d=0;d<c.length;d++)if(c[d].listener==a)return b;c.push({listener:a,on:!0});return b},b.remove=function(a){for(var d=0;d<c.length;d++){var e=c[d];if(e.listener==a){e.on=!1,c=c.slice(0,d).concat(c.slice(d+1));break}}return b},b.dispatch=function(){var a=c;for(var b=0,d=a.length;b<d;b++){var e=a[b];e.on&&e.listener.apply(this,arguments)}};return b}function h(a){a.apply(this,(arguments[0]=this,arguments));return this}function g(a){return a.replace(/(^\s+)|(\s+$)/g,"").replace(/\s+/g," ")}function f(a){return a==null}function e(a){return typeof a=="function"?a:function(){return a}}function c(a){return Array.prototype.slice.call(a)}function b(a){var b=-1,c=a.length,d=[];while(++b<c)d.push(a[b]);return d}d3={version:"1.8.6"},Date.now||(Date.now=function(){return+(new Date)}),Object.create||(Object.create=function(a){function b(){}b.prototype=a;return new b});var a=c;try{a(document.documentElement.childNodes)[0].nodeType}catch(d){a=b}d3.rebind=function(a,b){return function(){var c=b.apply(a,arguments);return arguments.length?a:c}},d3.ascending=function(a,b){return a<b?-1:a>b?1:0},d3.descending=function(a,b){return b<a?-1:b>a?1:0},d3.min=function(a,b){var c=0,d=a.length,e=a[0],f;if(arguments.length==1)while(++c<d)e>(f=a[c])&&(e=f);else{e=b(a[0]);while(++c<d)e>(f=b(a[c]))&&(e=f)}return e},d3.max=function(a,b){var c=0,d=a.length,e=a[0],f;if(arguments.length==1)while(++c<d)e<(f=a[c])&&(e=f);else{e=b(e);while(++c<d)e<(f=b(a[c]))&&(e=f)}return e},d3.nest=function(){function g(a,d){if(d>=b.length)return a;var e=[],f=c[d++],h;for(h in a)e.push({key:h,values:g(a[h],d)});f&&e.sort(function(a,b){return f(a.key,b.key)});return e}function f(c,g){if(g>=b.length)return e?e.call(a,c):d?c.sort(d):c;var h=-1,i=c.length,j=b[g++],k,l,m={};while(++h<i)(k=j(l=c[h]))in m?m[k].push(l):m[k]=[l];for(k in m)m[k]=f(m[k],g);return m}var a={},b=[],c=[],d,e;a.map=function(a){return f(a,0)},a.entries=function(a){return g(f(a,0),0)},a.key=function(c){b.push(c);return a},a.sortKeys=function(d){c[b.length-1]=d;return a},a.sortValues=function(b){d=b;return a},a.rollup=function(b){e=b;return a};return a},d3.keys=function(a){var b=[];for(var c in a)b.push(c);return b},d3.values=function(a){var b=[];for(var c in a)b.push(a[c]);return b},d3.entries=function(a){var b=[];for(var c in a)b.push({key:c,value:a[c]});return b},d3.merge=function(a){return Array.prototype.concat.apply([],a)},d3.split=function(a,b){var c=[],d=[],e,g=-1,h=a.length;arguments.length<2&&(b=f);while(++g<h)b.call(d,e=a[g],g)?d=[]:(d.length||c.push(d),d.push(e));return c},d3.range=function(a,b,c){arguments.length==1&&(b=a,a=0),c==null&&(c=1);if((b-a)/c==Infinity)throw new Error("infinite range");var d=[],e=-1,f;if(c<0)while((f=a+c*++e)>b)d.push(f);else while((f=a+c*++e)<b)d.push(f);return d},d3.requote=function(a){return a.replace(i,"\\$&")};var i=/[\\\^\$\*\+\?\[\]\(\)\.\{\}]/g;d3.xhr=function(a,b,c){var d=new XMLHttpRequest;arguments.length<3?c=b:b&&d.overrideMimeType&&d.overrideMimeType(b),d.open("GET",a,!0),d.onreadystatechange=function(){d.readyState==4&&c(d.status<300?d:null)},d.send(null)},d3.text=function(a,b,c){function d(a){c(a&&a.responseText)}arguments.length<3&&(c=b,b=null),d3.xhr(a,b,d)},d3.json=function(a,b){d3.text(a,"application/json",function(a){b(a?JSON.parse(a):null)})},d3.html=function(a,b){d3.text(a,"text/html",function(a){if(a!=null){var c=document.createRange();c.selectNode(document.body),a=c.createContextualFragment(a)}b(a)})},d3.xml=function(a,b,c){function d(a){c(a&&a.responseXML)}arguments.length<3&&(c=b,b=null),d3.xhr(a,b,d)},d3.ns={prefix:{svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},qualify:function(a){var b=a.indexOf(":");return b<0?a:{space:d3.ns.prefix[a.substring(0,b)],local:a.substring(b+1)}}},d3.dispatch=function(a){var b={},c;for(var d=0,e=arguments.length;d<e;d++)c=arguments[d],b[c]=j(c);return b},d3.format=function(a){var b=k.exec(a),c=b[1]||" ",d=b[3]||"",e=b[5],f=+b[6],g=b[7],h=b[8],i=b[9];h&&(h=h.substring(1)),e&&(c="0",g&&(f-=Math.floor((f-1)/4))),i=="d"&&(h="0");return function(a){var b=+a,j=b<0&&(b=-b)?"−":d;if(i=="d"&&b%1)return"";h?a=b.toFixed(h):a=""+b;if(e){var k=a.length+j.length;k<f&&(a=Array(f-k+1).join(c)+a),g&&(a=l(a)),a=j+a}else{g&&(a=l(a)),a=j+a;var k=a.length;k<f&&(a=Array(f-k+1).join(c)+a)}return a}};var k=/(?:([^{])?([<>=^]))?([+\- ])?(#)?(0)?([0-9]+)?(,)?(\.[0-9]+)?([a-zA-Z%])?/,m=t(2),n=t(3),o={linear:function(){return s},poly:t,quad:function(){return m},cubic:function(){return n},sin:function(){return u},exp:function(){return v},circle:function(){return w},elastic:x,back:y,bounce:function(){return z}},p={"in":function(a){return a},out:q,"in-out":r,"out-in":function(a){return r(q(a))}};d3.ease=function(a){var b=a.indexOf("-"),c=b>=0?a.substring(0,b):a,d=b>=0?a.substring(b+1):"in";return p[d](o[c].apply(null,Array.prototype.slice.call(arguments,1)))},d3.event=null,d3.interpolate=function(a,b){if(typeof b=="number")return d3.interpolateNumber(+a,b);if(typeof b=="string")return b in K||/^(#|rgb\(|hsl\()/.test(b)?d3.interpolateRgb(String(a),b):d3.interpolateString(String(a),b);if(b instanceof Array)return d3.interpolateArray(a,b);return d3.interpolateObject(a,b)},d3.interpolateNumber=function(a,b){b-=a;return function(c){return a+b*c}},d3.interpolateRound=function(a,b){b-=a;return function(c){return Math.round(a+b*c)}},d3.interpolateString=function(a,b){var c,d,e,f=0,g=0,h=[],i=[],j,k;for(d=0;c=A.exec(b);++d)c.index&&h.push(b.substring(f,g=c.index)),i.push({i:h.length,x:c[0]}),h.push(null),f=A.lastIndex;f<b.length&&h.push(b.substring(f));for(d=0,j=i.length;(c=A.exec(a))&&d<j;++d){k=i[d];if(k.x==c[0]){if(k.i)if(h[k.i+1]==null){h[k.i-1]+=k.x,h.splice(k.i,1);for(e=d+1;e<j;++e)i[e].i--}else{h[k.i-1]+=k.x+h[k.i+1],h.splice(k.i,2);for(e=d+1;e<j;++e)i[e].i-=2}else if(h[k.i+1]==null)h[k.i]=k.x;else{h[k.i]=k.x+h[k.i+1],h.splice(k.i+1,1);for(e=d+1;e<j;++e)i[e].i--}i.splice(d,1),j--,d--}else k.x=d3.interpolateNumber(parseFloat(c[0]),parseFloat(k.x))}while(d<j)k=i.pop(),h[k.i+1]==null?h[k.i]=k.x:(h[k.i]=k.x+h[k.i+1],h.splice(k.i+1,1)),j--;if(h.length==1)return h[0]==null?i[0].x:function(){return b};return function(a){for(d=0;d<j;++d)h[(k=i[d]).i]=k.x(a);return h.join("")}},d3.interpolateRgb=function(a,b){a=d3.rgb(a),b=d3.rgb(b);var c=a.r,d=a.g,e=a.b,f=b.r-c,g=b.g-d,h=b.b-e;return function(a){return"rgb("+Math.round(c+f*a)+","+Math.round(d+g*a)+","+Math.round(e+h*a)+")"}},d3.interpolateHsl=function(a,b){a=d3.hsl(a),b=d3.hsl(b);var c=a.h,d=a.s,e=a.l,f=b.h-c,g=b.s-d,h=b.l-e;return function(a){return O(c+f*a,d+g*a,e+h*a).toString()}},d3.interpolateArray=function(a,b){var c=[],d=[],e=a.length,f=b.length,g=Math.min(a.length,b.length),h;for(h=0;h<g;++h)c.push(d3.interpolate(a[h],b[h]));for(;h<e;++h)d[h]=a[h];for(;h<f;++h)d[h]=b[h];return function(a){for(h=0;h<g;++h)d[h]=c[h](a);return d}},d3.interpolateObject=function(a,b){var c={},d={},e;for(e in a)e in b?c[e]=D(e)(a[e],b[e]):d[e]=a[e];for(e in b)e in a||(d[e]=b[e]);return function(a){for(e in c)d[e]=c[e](a);return d}};var A=/[-+]?(?:\d+\.\d+|\d+\.|\.\d+|\d+)(?:[eE][-]?\d+)?/g,B=/[-+]?\d*\.?\d*(?:[eE][-]?\d+)?(.*)/,C={background:1,fill:1,stroke:1};d3.rgb=function(a,b,c){return arguments.length==1?H(""+a,E,O):E(~~a,~~b,~~c)};var K={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};for(var L in K)K[L]=H(K[L],E,O);d3.hsl=function(a,b,c){return arguments.length==1?H(""+a,I,M):M(+a,+b,+c)};var P=function(a,b){return b.querySelector(a)},Q=function(b,c){return a(c.querySelectorAll(b))};typeof Sizzle=="function"&&(P=function(a,b){return Sizzle(a,b)[0]},Q=function(a,b){return Sizzle.uniqueSort(Sizzle(a,b))});var R=S([[document]]);R[0].parentNode=document.documentElement,d3.select=function(a){return typeof a=="string"?R.select(a):S([[a]])},d3.selectAll=function(b){return typeof b=="string"?R.selectAll(b):S([a(b)])},d3.transition=R.transition;var W=0,X=0,$=null,_=0,ba;d3.timer=function(a){bb(a,0)};var bf=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,17)};d3.scale={},d3.scale.linear=function(){function j(c){var d=Math.min(a,b),e=Math.max(a,b),f=e-d,g=Math.pow(10,Math.floor(Math.log(f/c)/Math.LN10)),h=c/(f/g);h<=.15?g*=10:h<=.35?g*=5:h<=.75&&(g*=2);return{start:Math.ceil(d/g)*g,stop:Math.floor(e/g)*g+g*.5,step:g}}function i(b){return h((b-a)*e)}var a=0,b=1,c=0,d=1,e=1,f=1,g=d3.interpolate,h=g(c,d);i.invert=function(b){return(b-c)*f+a},i.domain=function(g){if(!arguments.length)return[a,b];a=+g[0],b=+g[1],e=1/(b-a),f=(b-a)/(d-c);return i},i.range=function(e){if(!arguments.length)return[c,d];c=e[0],d=e[1],f=(b-a)/(d-c),h=g(c,d);return i},i.rangeRound=function(a){return i.range(a).interpolate(d3.interpolateRound)},i.interpolate=function(a){if(!arguments.length)return g;h=(g=a)(c,d);return i},i.ticks=function(a){var b=j(a);return d3.range(b.start,b.stop,b.step)},i.tickFormat=function(a){var b=Math.max(0,-Math.floor(Math.log(j(a).step)/Math.LN10+.01));return d3.format(",."+b+"f")};return i},d3.scale.log=function(){function d(c){return a(b(c))}var a=d3.scale.linear(),b=bg,c=b.pow;d.invert=function(b){return c(a.invert(b))},d.domain=function(e){if(!arguments.length)return a.domain().map(c);b=(e[0]||e[1])<0?bh:bg,c=b.pow,a.domain(e.map(b));return d},d.range=d3.rebind(d,a.range),d.rangeRound=d3.rebind(d,a.rangeRound),d.interpolate=d3.rebind(d,a.interpolate),d.ticks=function(){var d=a.domain(),e=[];if(d.every(isFinite)){var f=Math.floor(d[0]),g=Math.ceil(d[1]),h=c(d[0]),i=c(d[1]);if(b===bh){e.push(c(f));for(;f++<g;)for(var j=9;j>0;j--)e.push(c(f)*j)}else{for(;f<g;f++)for(var j=1;j<10;j++)e.push(c(f)*j);e.push(c(f))}for(f=0;e[f]<h;f++);for(g=e.length;e[g-1]>i;g--);e=e.slice(f,g)}return e},d.tickFormat=function(){return function(a){return a.toPrecision(1)}};return d},bg.pow=function(a){return Math.pow(10,a)},bh.pow=function(a){return-Math.pow(10,-a)},d3.scale.pow=function(){function f(b){return a(d(b))}var a=d3.scale.linear(),b=d3.scale.linear(),c=1,d=Number,e=d;f.invert=function(b){return e(a.invert(b))},f.domain=function(g){if(!arguments.length)return a.domain().map(e);var h=(g[0]||g[1])<0?bj:bi;d=h(c),e=h(1/c),a.domain(g.map(d)),b.domain(g);return f},f.range=d3.rebind(f,a.range),f.rangeRound=d3.rebind(f,a.rangeRound),f.interpolate=d3.rebind(f,a.interpolate),f.ticks=b.ticks,f.tickFormat=b.tickFormat,f.exponent=function(a){if(!arguments.length)return c;var b=f.domain();c=a;return f.domain(b)};return f},d3.scale.sqrt=function(){return d3.scale.pow().exponent(.5)},d3.scale.ordinal=function(){function e(d){var e=d in b?b[d]:b[d]=a.push(d)-1;return c[e%c.length]}var a=[],b={},c=[],d=0;e.domain=function(c){if(!arguments.length)return a;a=c,b={};var d=-1,f=-1,g=a.length;while(++d<g)c=a[d],c in b||(b[c]=++f);return e},e.range=function(a){if(!arguments.length)return c;c=a;return e},e.rangePoints=function(b,f){arguments.length<2&&(f=0);var g=b[0],h=b[1],i=(h-g)/(a.length-1+f);c=a.length==1?[(g+h)/2]:d3.range(g+i*f/2,h+i/2,i),d=0;return e},e.rangeBands=function(b,f){arguments.length<2&&(f=0);var g=b[0],h=b[1],i=(h-g)/(a.length+f);c=d3.range(g+i*f,h,i),d=i*(1-f);return e},e.rangeRoundBands=function(b,f){arguments.length<2&&(f=0);var g=b[0],h=b[1],i=h-g,j=Math.floor(i/(a.length+f)),k=i-(a.length-f)*j;c=d3.range(g+Math.round(k/2),h,j),d=Math.round(j*(1-f));return e},e.rangeBand=function(){return d};return e},d3.scale.category10=function(){return d3.scale.ordinal().range(bk)},d3.scale.category20=function(){return d3.scale.ordinal().range(bl)},d3.scale.category20b=function(){return d3.scale.ordinal().range(bm)},d3.scale.category20c=function(){return d3.scale.ordinal().range(bn)};var bk=["#1f77b4","#ff7f0e","#2ca02c","#d62728","#9467bd","#8c564b","#e377c2","#7f7f7f","#bcbd22","#17becf"],bl=["#1f77b4","#aec7e8","#ff7f0e","#ffbb78","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5","#8c564b","#c49c94","#e377c2","#f7b6d2","#7f7f7f","#c7c7c7","#bcbd22","#dbdb8d","#17becf","#9edae5"],bm=["#393b79","#5254a3","#6b6ecf","#9c9ede","#637939","#8ca252","#b5cf6b","#cedb9c","#8c6d31","#bd9e39","#e7ba52","#e7cb94","#843c39","#ad494a","#d6616b","#e7969c","#7b4173","#a55194","#ce6dbd","#de9ed6"],bn=["#3182bd","#6baed6","#9ecae1","#c6dbef","#e6550d","#fd8d3c","#fdae6b","#fdd0a2","#31a354","#74c476","#a1d99b","#c7e9c0","#756bb1","#9e9ac8","#bcbddc","#dadaeb","#636363","#969696","#bdbdbd","#d9d9d9"];d3.scale.quantile=function(){function f(a){return b[e(a)]}function e(a){if(isNaN(a=+a))return NaN;var b=0,d=c.length-1;while(b<=d){var e=b+d>>1,f=c[e];if(f<a)b=e+1;else if(f>a)d=e-1;else return e}return d<0?0:d}function d(){var d=-1,e=c.length=b.length,f=a.length/e;while(++d<e)c[d]=a[~~(d*f)]}var a=[],b=[],c=[];f.domain=function(b){if(!arguments.length)return a;a=b.filter(function(a){return!isNaN(a)}).sort(d3.ascending),d();return f},f.range=function(a){if(!arguments.length)return b;b=a,d();return f},f.quantiles=function(){return c};return f},d3.scale.quantize=function(){function f(b){return e[Math.max(0,Math.min(d,Math.floor(c*(b-a))))]}var a=0,b=1,c=2,d=1,e=[0,1];f.domain=function(d){if(!arguments.length)return[a,b];a=d[0],b=d[1],c=e.length/(b-a);return f},f.range=function(g){if(!arguments.length)return e;e=g,c=e.length/(b-a),d=e.length-1;return f};return f},d3.svg={},d3.svg.arc=function(){function f(){var e=a.apply(this,arguments),f=b.apply(this,arguments),g=c.apply(this,arguments)+bo,h=d.apply(this,arguments)+bo,i=h-g,j=i<Math.PI?"0":"1",k=Math.cos(g),l=Math.sin(g),m=Math.cos(h),n=Math.sin(h);return i>=bp?e?"M0,"+f+"A"+f+","+f+" 0 1,1 0,"+ -f+"A"+f+","+f+" 0 1,1 0,"+f+"M0,"+e+"A"+e+","+e+" 0 1,1 0,"+ -e+"A"+e+","+e+" 0 1,1 0,"+e+"Z":"M0,"+f+"A"+f+","+f+" 0 1,1 0,"+ -f+"A"+f+","+f+" 0 1,1 0,"+f+"Z":e?"M"+f*k+","+f*l+"A"+f+","+f+" 0 "+j+",1 "+f*m+","+f*n+"L"+e*m+","+e*n+"A"+e+","+e+" 0 "+j+",0 "+e*k+","+e*l+"Z":"M"+f*k+","+f*l+"A"+f+","+f+" 0 "+j+",1 "+f*m+","+f*n+"L0,0"+"Z"}var a=bq,b=br,c=bs,d=bt;f.innerRadius=function(b){if(!arguments.length)return a;a=e(b);return f},f.outerRadius=function(a){if(!arguments.length)return b;b=e(a);return f},f.startAngle=function(a){if(!arguments.length)return c;c=e(a);return f},f.endAngle=function(a){if(!arguments.length)return d;d=e(a);return f},f.centroid=function(){var e=(a.apply(this,arguments)+b.apply(this,arguments))/2,f=(c.apply(this,arguments)+d.apply(this,arguments))/2+bo;return[Math.cos(f)*e,Math.sin(f)*e]};return f};var bo=-Math.PI/2,bp=2*Math.PI-1e-6;d3.svg.line=function(){function f(c){return c.length<1?null:"M"+d(bu(this,c,a,b),e)}var a=bv,b=bw,c="linear",d=bx[c],e=.7;f.x=function(b){if(!arguments.length)return a;a=b;return f},f.y=function(a){if(!arguments.length)return b;b=a;return f},f.interpolate=function(a){if(!arguments.length)return c;d=bx[c=a];return f},f.tension=function(a){if(!arguments.length)return e;e=a;return f};return f};var bx={linear:by,"step-before":bz,"step-after":bA,basis:bF,"basis-closed":bG,cardinal:bC,"cardinal-closed":bB},bI=[0,2/3,1/3,0],bJ=[0,1/3,2/3,0],bK=[0,1/6,2/3,1/6];d3.svg.area=function(){function g(d){return d.length<1?null:"M"+e(bu(this,d,a,c),f)+"L"+e( <del>bu(this,d,a,b).reverse(),f)+"Z"}var a=bv,b=bM,c=bw,d="linear",e=bx[d],f=.7;g.x=function(b){if(!arguments.length)return a;a=b;return g},g.y0=function(a){if(!arguments.length)return b;b=a;return g},g.y1=function(a){if(!arguments.length)return c;c=a;return g},g.interpolate=function(a){if(!arguments.length)return d;e=bx[d=a];return g},g.tension=function(a){if(!arguments.length)return f;f=a;return g};return g},d3.svg.chord=function(){function k(a,b,c,d){return"Q 0,0 "+d}function j(a,b){return"A"+a+","+a+" 0 0,1 "+b}function i(a,b){return a.a0==b.a0&&a.a1==b.a1}function h(a,b,e,g){var h=b.call(a,e,g),i=c.call(a,h,g),j=d.call(a,h,g)+bo,k=f.call(a,h,g)+bo;return{r:i,a0:j,a1:k,p0:[i*Math.cos(j),i*Math.sin(j)],p1:[i*Math.cos(k),i*Math.sin(k)]}}function g(c,d){var e=h(this,a,c,d),f=h(this,b,c,d);return"M"+e.p0+j(e.r,e.p1)+(i(e,f)?k(e.r,e.p1,e.r,e.p0):k(e.r,e.p1,f.r,f.p0)+j(f.r,f.p1)+k(f.r,f.p1,e.r,e.p0))+"Z"}var a=bN,b=bO,c=bP,d=bs,f=bt;g.radius=function(a){if(!arguments.length)return c;c=e(a);return g},g.source=function(b){if(!arguments.length)return a;a=e(b);return g},g.target=function(a){if(!arguments.length)return b;b=e(a);return g},g.startAngle=function(a){if(!arguments.length)return d;d=e(a);return g},g.endAngle=function(a){if(!arguments.length)return f;f=e(a);return g};return g},d3.svg.mouse=function(a){var b=(a.ownerSVGElement||a).createSVGPoint();if(bS<0&&(window.scrollX||window.scrollY)){var c=d3.select(document.body).append("svg:svg").style("position","absolute").style("top",0).style("left",0),d=c[0][0].getScreenCTM();bS=!d.f&&!d.e,c.remove()}bS?(b.x=d3.event.pageX,b.y=d3.event.pageY):(b.x=d3.event.clientX,b.y=d3.event.clientY),b=b.matrixTransform(a.getScreenCTM().inverse());return[b.x,b.y]};var bS=/WebKit/.test(navigator.userAgent)?-1:0;d3.svg.symbol=function(){function c(c,d){return(bV[a.call(this,c,d)]||bV.circle)(b.call(this,c,d))}var a=bU,b=bT;c.type=function(b){if(!arguments.length)return a;a=e(b);return c},c.size=function(a){if(!arguments.length)return b;b=e(a);return c};return c},d3.svg.symbolTypes=["circle","cross","diamond","square","triangle-down","triangle-up"];var bV={circle:function(a){var b=Math.sqrt(a/Math.PI);return"M0,"+b+"A"+b+","+b+" 0 1,1 0,"+ -b+"A"+b+","+b+" 0 1,1 0,"+b+"Z"},cross:function(a){var b=Math.sqrt(a/5)/2;return"M"+ -3*b+","+ -b+"H"+ -b+"V"+ -3*b+"H"+b+"V"+ -b+"H"+3*b+"V"+b+"H"+b+"V"+3*b+"H"+ -b+"V"+b+"H"+ -3*b+"Z"},diamond:function(a){var b=Math.sqrt(a/(2*bX)),c=b*bX;return"M0,"+ -b+"L"+c+",0"+" 0,"+b+" "+ -c+",0"+"Z"},square:function(a){var b=Math.sqrt(a)/2;return"M"+ -b+","+ -b+"L"+b+","+ -b+" "+b+","+b+" "+ -b+","+b+"Z"},"triangle-down":function(a){var b=Math.sqrt(a/bW),c=b*bW/2;return"M0,"+c+"L"+b+","+ -c+" "+ -b+","+ -c+"Z"},"triangle-up":function(a){var b=Math.sqrt(a/bW),c=b*bW/2;return"M0,"+ -c+"L"+b+","+c+" "+ -b+","+c+"Z"}},bW=Math.sqrt(3),bX=Math.tan(30*Math.PI/180)})() <ide>\ No newline at end of file <add>(function(){function bU(){return"circle"}function bT(){return 64}function bR(a){return a.endAngle}function bQ(a){return a.startAngle}function bP(a){return a.radius}function bO(a){return a.target}function bN(a){return a.source}function bM(){return 0}function bL(a,b,c){a.push("C",bH(bI,b),",",bH(bI,c),",",bH(bJ,b),",",bH(bJ,c),",",bH(bK,b),",",bH(bK,c))}function bH(a,b){return a[0]*b[0]+a[1]*b[1]+a[2]*b[2]+a[3]*b[3]}function bG(a){var b,c=-1,d=a.length,e=d+4,f,g=[],h=[];while(++c<4)f=a[c%d],g.push(f[0]),h.push(f[1]);b=[bH(bK,g),",",bH(bK,h)],--c;while(++c<e)f=a[c%d],g.shift(),g.push(f[0]),h.shift(),h.push(f[1]),bL(b,g,h);return b.join("")}function bF(a){if(a.length<3)return by(a);var b=[],c=1,d=a.length,e=a[0],f=e[0],g=e[1],h=[f,f,f,(e=a[1])[0]],i=[g,g,g,e[1]];b.push(f,",",g),bL(b,h,i);while(++c<d)e=a[c],h.shift(),h.push(e[0]),i.shift(),i.push(e[1]),bL(b,h,i);c=-1;while(++c<2)h.shift(),h.push(e[0]),i.shift(),i.push(e[1]),bL(b,h,i);return b.join("")}function bE(a,b){var c=[],d=(1-b)/2,e=a[0],f=a[1],g=a[2],h=2,i=a.length;while(++h<i)c.push([d*(g[0]-e[0]),d*(g[1]-e[1])]),e=f,f=g,g=a[h];c.push([d*(g[0]-e[0]),d*(g[1]-e[1])]);return c}function bD(a,b){if(b.length<1||a.length!=b.length&&a.length!=b.length+2)return by(a);var c=a.length!=b.length,d="",e=a[0],f=a[1],g=b[0],h=g,i=1;c&&(d+="Q"+(f[0]-g[0]*2/3)+","+(f[1]-g[1]*2/3)+","+f[0]+","+f[1],e=a[1],i=2);if(b.length>1){h=b[1],f=a[i],i++,d+="C"+(e[0]+g[0])+","+(e[1]+g[1])+","+(f[0]-h[0])+","+(f[1]-h[1])+","+f[0]+","+f[1];for(var j=2;j<b.length;j++,i++)f=a[i],h=b[j],d+="S"+(f[0]-h[0])+","+(f[1]-h[1])+","+f[0]+","+f[1]}if(c){var k=a[i];d+="Q"+(f[0]+h[0]*2/3)+","+(f[1]+h[1]*2/3)+","+k[0]+","+k[1]}return d}function bC(a,b,c){return a.length<3?by(a):a[0]+bD(a,bE(a,b))}function bB(a,b){return a.length<3?by(a):a[0]+bD(a,bE([a[a.length-2]].concat(a,[a[1]]),b))}function bA(a){var b=[],c=0,d=a.length,e=a[0];b.push(e[0],",",e[1]);while(++c<d)b.push("H",(e=a[c])[0],"V",e[1]);return b.join("")}function bz(a){var b=[],c=0,d=a.length,e=a[0];b.push(e[0],",",e[1]);while(++c<d)b.push("V",(e=a[c])[1],"H",e[0]);return b.join("")}function by(a){var b=[],c=0,d=a.length,e=a[0];b.push(e[0],",",e[1]);while(++c<d)b.push("L",(e=a[c])[0],",",e[1]);return b.join("")}function bw(a){return a[1]}function bv(a){return a[0]}function bu(a,b,c,d){var e=[],f=-1,g=b.length,h=typeof c=="function",i=typeof d=="function",j;if(h&&i)while(++f<g)e.push([c.call(a,j=b[f],f),d.call(a,j,f)]);else if(h)while(++f<g)e.push([c.call(a,b[f],f),d]);else if(i)while(++f<g)e.push([c,d.call(a,b[f],f)]);else while(++f<g)e.push([c,d]);return e}function bt(a){return a.endAngle}function bs(a){return a.startAngle}function br(a){return a.outerRadius}function bq(a){return a.innerRadius}function bj(a){return function(b){return-Math.pow(-b,a)}}function bi(a){return function(b){return Math.pow(b,a)}}function bh(a){return-Math.log(-a)/Math.LN10}function bg(a){return Math.log(a)/Math.LN10}function be(){var a=null,b=$;while(b)b=b.flush?a?a.next=b.next:$=b.next:(a=b).next;a||(ba=0)}function bd(){var a,b=Date.now(),c=null,d=$;while(d)a=b-d.then,a>d.delay&&(d.flush=d.callback(a)),d=(c=d).next;be(),ba&&bf(bd)}function bc(){ba=1,_=0,bf(bd)}function bb(a,b){var c=Date.now(),d=!1,e=c+b,f,g=$;if(!!isFinite(b)){while(g){if(g.callback==a)g.then=c,g.delay=b,d=!0;else{var h=g.then+g.delay;h<e&&(e=h)}f=g,g=g.next}d||($={callback:a,then:c,delay:b,next:$}),ba||(clearTimeout(_),_=setTimeout(bc,Math.max(24,e-c)))}}function Z(a){return typeof a=="function"?function(b,c,d){return d3.interpolate(d,String(a.call(this,b,c)))}:(a=String(a),function(b,c,d){return d3.interpolate(d,a)})}function Y(a){function n(b){var h=!0,l=-1;a.each(function(){if(i[++l]!=2){var a=(b-j[l])/k[l],n=this.__transition__,o,p,q=e[l];if(a<1){h=!1;if(a<0)return}else a=1;if(i[l]){if(!n||n.active!=c){i[l]=2;return}}else{if(!n||n.active>c){i[l]=2;return}i[l]=1,g.start.dispatch.apply(this,arguments),q=e[l]={},n.active=c;for(p in d)q[p]=d[p].apply(this,arguments)}o=m(a);for(p in d)q[p].call(this,o);if(a==1){i[l]=2;if(n.active==c){var r=n.owner;r==c&&(delete this.__transition__,f&&this.parentNode.removeChild(this)),X=c,g.end.dispatch.apply(this,arguments),X=0,n.owner=r}}}});return h}var b={},c=X||++W,d={},e=[],f=!1,g=d3.dispatch("start","end"),i=[],j=[],k=[],l,m=d3.ease("cubic-in-out");a.each(function(){(this.__transition__||(this.__transition__={})).owner=c}),b.delay=function(c){var d=Infinity,e=-1;typeof c=="function"?a.each(function(a,b){var f=j[++e]=+c.apply(this,arguments);f<d&&(d=f)}):(d=+c,a.each(function(a,b){j[++e]=d})),bb(n,d);return b},b.duration=function(c){var d=-1;typeof c=="function"?(l=0,a.each(function(a,b){var e=k[++d]=+c.apply(this,arguments);e>l&&(l=e)})):(l=+c,a.each(function(a,b){k[++d]=l}));return b},b.ease=function(a){m=typeof a=="function"?a:d3.ease.apply(d3,arguments);return b},b.attrTween=function(a,c){function f(b,d){var e=c.call(this,b,d,this.getAttributeNS(a.space,a.local));return function(b){this.setAttributeNS(a.space,a.local,e(b))}}function e(b,d){var e=c.call(this,b,d,this.getAttribute(a));return function(b){this.setAttribute(a,e(b))}}d["attr."+a]=a.local?f:e;return b},b.attr=function(a,c){return b.attrTween(a,Z(c))},b.styleTween=function(a,c,e){function f(b,d){var f=c.call(this,b,d,window.getComputedStyle(this,null).getPropertyValue(a));return function(b){this.style.setProperty(a,f(b),e)}}arguments.length<3&&(e=null),d["style."+a]=f;return b},b.style=function(a,c,d){arguments.length<3&&(d=null);return b.styleTween(a,Z(c),d)},b.select=function(b){var c,d=Y(a.select(b)).ease(m);c=-1,d.delay(function(a,b){return j[++c]}),c=-1,d.duration(function(a,b){return k[++c]});return d},b.selectAll=function(b){var c,d=Y(a.selectAll(b)).ease(m);c=-1,d.delay(function(a,b){return j[b?c:++c]}),c=-1,d.duration(function(a,b){return k[b?c:++c]});return d},b.remove=function(){f=!0;return b},b.each=function(a,c){g[a].add(c);return b},b.call=h;return b.delay(0).duration(250)}function V(a){return{__data__:a}}function U(a){arguments.length||(a=d3.ascending);return function(b,c){return a(b&&b.__data__,c&&c.__data__)}}function T(a){function b(b){var c=[],d,e,f,g;for(var h=0,i=a.length;h<i;h++){f=a[h],c.push(d=[]),d.parentNode=f.parentNode;for(var j=0,k=f.length;j<k;j++)(g=f[j])?(d.push(e=b(f.parentNode)),e.__data__=g.__data__):d.push(null)}return S(c)}a.append=function(a){function d(b){return b.appendChild(document.createElementNS(a.space,a.local))}function c(b){return b.appendChild(document.createElement(a))}a=d3.ns.qualify(a);return b(a.local?d:c)},a.insert=function(a,c){function e(b){return b.insertBefore(document.createElementNS(a.space,a.local),P(c,b))}function d(b){return b.insertBefore(document.createElement(a),P(c,b))}a=d3.ns.qualify(a);return b(a.local?e:d)};return a}function S(a){function d(b){for(var c=0,d=a.length;c<d;c++){var e=a[c];for(var f=0,g=e.length;f<g;f++){var h=e[f];if(h)return b.call(h,h.__data__,f)}}return null}function c(b){var c=[],d,e,f;for(var g=0,h=a.length;g<h;g++){e=a[g];for(var i=0,j=e.length;i<j;i++)if(f=e[i])c.push(d=b(f)),d.parentNode=f}return S(c)}function b(b){var c=[],d,e,f,g;for(var h=0,i=a.length;h<i;h++){f=a[h],c.push(d=[]),d.parentNode=f.parentNode;for(var j=0,k=f.length;j<k;j++)(g=f[j])?(d.push(e=b(g)),e&&"__data__"in g&&(e.__data__=g.__data__)):d.push(null)}return S(c)}a.select=function(a){return b(function(b){return P(a,b)})},a.selectAll=function(a){return c(function(b){return Q(a,b)})},a.filter=function(b){var c=[],d,e,f;for(var g=0,h=a.length;g<h;g++){e=a[g],c.push(d=[]),d.parentNode=e.parentNode;for(var i=0,j=e.length;i<j;i++)(f=e[i])&&b.call(f,f.__data__,i)&&d.push(f)}return S(c)},a.map=function(b){var c,d;for(var e=0,f=a.length;e<f;e++){c=a[e];for(var g=0,h=c.length;g<h;g++)if(d=c[g])d.__data__=b.call(d,d.__data__,g)}return a},a.data=function(b,c){function g(a,b){var g=0,h=a.length,i=b.length,j=Math.min(h,i),k=Math.max(h,i),l=[],m=[],n=[],o,p;if(c){var q={},r=[],s,t=b.length;for(g=0;g<h;g++)s=c.call(o=a[g],o.__data__,g),s in q?n[t++]=a[g]:q[s]=o,r.push(s);for(g=0;g<i;g++)o=q[s=c.call(b,p=b[g],g)],o?(o.__data__=p,l[g]=o,m[g]=n[g]=null):(m[g]=V(p),l[g]=n[g]=null),delete q[s];for(g=0;g<h;g++)r[g]in q&&(n[g]=a[g])}else{for(;g<j;g++)o=a[g],p=b[g],o?(o.__data__=p,l[g]=o,m[g]=n[g]=null):(m[g]=V(p),l[g]=n[g]=null);for(;g<i;g++)m[g]=V(b[g]),l[g]=n[g]=null;for(;g<k;g++)n[g]=a[g],m[g]=l[g]=null}m.parentNode=l.parentNode=n.parentNode=a.parentNode,d.push(m),e.push(l),f.push(n)}var d=[],e=[],f=[],h=-1,i=a.length,j;if(typeof b=="function")while(++h<i)g(j=a[h],b.call(j,j.parentNode.__data__,h));else while(++h<i)g(j=a[h],b);var k=S(e);k.enter=function(){return T(d)},k.exit=function(){return S(f)};return k},a.each=function(b){for(var c=0,d=a.length;c<d;c++){var e=a[c];for(var f=0,g=e.length;f<g;f++){var h=e[f];h&&b.call(h,h.__data__,f)}}return a},a.empty=function(){return!d(function(){return!0})},a.node=function(){return d(function(){return this})},a.attr=function(b,c){function j(){var a=c.apply(this,arguments);a==null?this.removeAttributeNS(b.space,b.local):this.setAttributeNS(b.space,b.local,a)}function i(){var a=c.apply(this,arguments);a==null?this.removeAttribute(b):this.setAttribute(b,a)}function h(){this.setAttributeNS(b.space,b.local,c)}function g(){this.setAttribute(b,c)}function f(){this.removeAttributeNS(b.space,b.local)}function e(){this.removeAttribute(b)}b=d3.ns.qualify(b);if(arguments.length<2)return d(b.local?function(){return this.getAttributeNS(b.space,b.local)}:function(){return this.getAttribute(b)});return a.each(c==null?b.local?f:e:typeof c=="function"?b.local?j:i:b.local?h:g)},a.classed=function(b,c){function i(){(c.apply(this,arguments)?f:h).call(this)}function h(){var a=g(this.className.replace(e," "));this.className=a.length?a:null}function f(){var a=this.className;e.lastIndex=0,e.test(a)||(this.className=g(a+" "+b))}var e=new RegExp("(^|\\s+)"+d3.requote(b)+"(\\s+|$)","g");if(arguments.length<2)return d(function(){e.lastIndex=0;return e.test(this.className)});return a.each(typeof c=="function"?i:c?f:h)},a.style=function(b,c,e){function h(){var a=c.apply(this,arguments);a==null?this.style.removeProperty(b):this.style.setProperty(b,a,e)}function g(){this.style.setProperty(b,c,e)}function f(){this.style.removeProperty(b)}arguments.length<3&&(e=null);if(arguments.length<2)return d(function(){return window.getComputedStyle(this,null).getPropertyValue(b)});return a.each(c==null?f:typeof c=="function"?h:g)},a.property=function(b,c){function g(){var a=c.apply(this,arguments);a==null?delete this[b]:this[b]=a}function f(){this[b]=c}function e(){delete this[b]}b=d3.ns.qualify(b);if(arguments.length<2)return d(function(){return this[b]});return a.each(c==null?e:typeof c=="function"?g:f)},a.text=function(b){function f(){var a=b.apply(this,arguments);a!=null&&this.appendChild(document.createTextNode(a))}function e(){this.appendChild(document.createTextNode(b))}function c(){while(this.lastChild)this.removeChild(this.lastChild)}if(arguments.length<1)return d(function(){return this.textContent});a.each(c);return b==null?a:a.each(typeof b=="function"?f:e)},a.html=function(b){function e(){this.innerHTML=b.apply(this,arguments)}function c(){this.innerHTML=b}if(arguments.length<1)return d(function(){return this.innerHTML});return a.each(typeof b=="function"?e:c)},a.append=function(a){function d(b){return b.appendChild(document.createElementNS(a.space,a.local))}function c(b){return b.appendChild(document.createElement(a))}a=d3.ns.qualify(a);return b(a.local?d:c)},a.insert=function(a,c){function e(b){return b.insertBefore(document.createElementNS(a.space,a.local),P(c,b))}function d(b){return b.insertBefore(document.createElement(a),P(c,b))}a=d3.ns.qualify(a);return b(a.local?e:d)},a.remove=function(){return a.each(function(){var a=this.parentNode;a&&a.removeChild(this)})},a.sort=function(b){b=U.apply(this,arguments);for(var c=0,d=a.length;c<d;c++){var e=a[c];e.sort(b);for(var f=1,g=e.length,h=e[0];f<g;f++){var i=e[f];i&&(h&&h.parentNode.insertBefore(i,h.nextSibling),h=i)}}return a},a.on=function(b,c){var d=b.indexOf("."),e=d==-1?b:b.substring(0,d),f="__on"+b;return a.each(function(a,b){function d(d){var e=d3.event;d3.event=d;try{c.call(this,a,b)}finally{d3.event=e}}this[f]&&this.removeEventListener(e,this[f],!1),c&&this.addEventListener(e,this[f]=d,!1)})},a.transition=function(){return Y(a)},a.call=h;return a}function O(a,b,c){function g(a){return Math.round(f(a)*255)}function f(a){a>360?a-=360:a<0&&(a+=360);if(a<60)return d+(e-d)*a/60;if(a<180)return e;if(a<240)return d+(e-d)*(240-a)/60;return d}var d,e;a=a%360,a<0&&(a+=360),b=b<0?0:b>1?1:b,c=c<0?0:c>1?1:c,e=c<=.5?c*(1+b):c+b-c*b,d=2*c-e;return E(g(a+120),g(a),g(a-120))}function N(){return"hsl("+this.h+","+this.s*100+"%,"+this.l*100+"%)"}function M(a,b,c){return{h:a,s:b,l:c,toString:N}}function J(a){var b=parseFloat(a);return a.charAt(a.length-1)=="%"?Math.round(b*2.55):b}function I(a,b,c){var d=Math.min(a/=255,b/=255,c/=255),e=Math.max(a,b,c),f=e-d,g,h,i=(e+d)/2;f?(h=i<.5?f/(e+d):f/(2-e-d),a==e?g=(b-c)/f+(b<c?6:0):b==e?g=(c-a)/f+2:g=(a-b)/f+4,g*=60):h=g=0;return M(g,h,i)}function H(a,b,c){var d=0,e=0,f=0,g,h,i;g=/([a-z]+)\((.*)\)/i.exec(a);if(g){h=g[2].split(",");switch(g[1]){case"hsl":return c(parseFloat(h[0]),parseFloat(h[1])/100,parseFloat(h[2])/100);case"rgb":return b(J(h[0]),J(h[1]),J(h[2]))}}if(i=K[a])return b(i.r,i.g,i.b);a!=null&&a.charAt(0)=="#"&&(a.length==4?(d=a.charAt(1),d+=d,e=a.charAt(2),e+=e,f=a.charAt(3),f+=f):a.length==7&&(d=a.substring(1,3),e=a.substring(3,5),f=a.substring(5,7)),d=parseInt(d,16),e=parseInt(e,16),f=parseInt(f,16));return b(d,e,f)}function G(a){return a<16?"0"+a.toString(16):a.toString(16)}function F(){return"#"+G(this.r)+G(this.g)+G(this.b)}function E(a,b,c){return{r:a,g:b,b:c,toString:F}}function D(a){return a in C||/\bcolor\b/.test(a)?d3.interpolateRgb:d3.interpolate}function z(a){return a<1/2.75?7.5625*a*a:a<2/2.75?7.5625*(a-=1.5/2.75)*a+.75:a<2.5/2.75?7.5625*(a-=2.25/2.75)*a+.9375:7.5625*(a-=2.625/2.75)*a+.984375}function y(a){a||(a=1.70158);return function(b){return b*b*((a+1)*b-a)}}function x(a,b){var c;arguments.length<2&&(b=.45),arguments.length<1?(a=1,c=b/4):c=b/(2*Math.PI)*Math.asin(1/a);return function(d){return 1+a*Math.pow(2,10*-d)*Math.sin((d-c)*2*Math.PI/b)}}function w(a){return 1-Math.sqrt(1-a*a)}function v(a){return a?Math.pow(2,10*(a-1))-.001:0}function u(a){return 1-Math.cos(a*Math.PI/2)}function t(a){return function(b){return Math.pow(b,a)}}function s(a){return a}function r(a){return function(b){return.5*(b<.5?a(2*b):2-a(2-2*b))}}function q(a){return function(b){return 1-a(1-b)}}function l(a){var b=a.lastIndexOf("."),c=b>=0?a.substring(b):(b=a.length,""),d=[];while(b>0)d.push(a.substring(b-=3,b+3));return d.reverse().join(",")+c}function j(a){var b={},c=[];b.add=function(a){for(var d=0;d<c.length;d++)if(c[d].listener==a)return b;c.push({listener:a,on:!0});return b},b.remove=function(a){for(var d=0;d<c.length;d++){var e=c[d];if(e.listener==a){e.on=!1,c=c.slice(0,d).concat(c.slice(d+1));break}}return b},b.dispatch=function(){var a=c;for(var b=0,d=a.length;b<d;b++){var e=a[b];e.on&&e.listener.apply(this,arguments)}};return b}function h(a){a.apply(this,(arguments[0]=this,arguments));return this}function g(a){return a.replace(/(^\s+)|(\s+$)/g,"").replace(/\s+/g," ")}function f(a){return a==null}function e(a){return typeof a=="function"?a:function(){return a}}function c(a){return Array.prototype.slice.call(a)}function b(a){var b=-1,c=a.length,d=[];while(++b<c)d.push(a[b]);return d}d3={version:"1.8.6"},Date.now||(Date.now=function(){return+(new Date)}),Object.create||(Object.create=function(a){function b(){}b.prototype=a;return new b});var a=c;try{a(document.documentElement.childNodes)[0].nodeType}catch(d){a=b}d3.rebind=function(a,b){return function(){var c=b.apply(a,arguments);return arguments.length?a:c}},d3.ascending=function(a,b){return a<b?-1:a>b?1:0},d3.descending=function(a,b){return b<a?-1:b>a?1:0},d3.min=function(a,b){var c=0,d=a.length,e=a[0],f;if(arguments.length==1)while(++c<d)e>(f=a[c])&&(e=f);else{e=b(a[0]);while(++c<d)e>(f=b(a[c]))&&(e=f)}return e},d3.max=function(a,b){var c=0,d=a.length,e=a[0],f;if(arguments.length==1)while(++c<d)e<(f=a[c])&&(e=f);else{e=b(e);while(++c<d)e<(f=b(a[c]))&&(e=f)}return e},d3.nest=function(){function g(a,d){if(d>=b.length)return a;var e=[],f=c[d++],h;for(h in a)e.push({key:h,values:g(a[h],d)});f&&e.sort(function(a,b){return f(a.key,b.key)});return e}function f(c,g){if(g>=b.length)return e?e.call(a,c):d?c.sort(d):c;var h=-1,i=c.length,j=b[g++],k,l,m={};while(++h<i)(k=j(l=c[h]))in m?m[k].push(l):m[k]=[l];for(k in m)m[k]=f(m[k],g);return m}var a={},b=[],c=[],d,e;a.map=function(a){return f(a,0)},a.entries=function(a){return g(f(a,0),0)},a.key=function(c){b.push(c);return a},a.sortKeys=function(d){c[b.length-1]=d;return a},a.sortValues=function(b){d=b;return a},a.rollup=function(b){e=b;return a};return a},d3.keys=function(a){var b=[];for(var c in a)b.push(c);return b},d3.values=function(a){var b=[];for(var c in a)b.push(a[c]);return b},d3.entries=function(a){var b=[];for(var c in a)b.push({key:c,value:a[c]});return b},d3.merge=function(a){return Array.prototype.concat.apply([],a)},d3.split=function(a,b){var c=[],d=[],e,g=-1,h=a.length;arguments.length<2&&(b=f);while(++g<h)b.call(d,e=a[g],g)?d=[]:(d.length||c.push(d),d.push(e));return c},d3.range=function(a,b,c){arguments.length==1&&(b=a,a=0),c==null&&(c=1);if((b-a)/c==Infinity)throw new Error("infinite range");var d=[],e=-1,f;if(c<0)while((f=a+c*++e)>b)d.push(f);else while((f=a+c*++e)<b)d.push(f);return d},d3.requote=function(a){return a.replace(i,"\\$&")};var i=/[\\\^\$\*\+\?\[\]\(\)\.\{\}]/g;d3.xhr=function(a,b,c){var d=new XMLHttpRequest;arguments.length<3?c=b:b&&d.overrideMimeType&&d.overrideMimeType(b),d.open("GET",a,!0),d.onreadystatechange=function(){d.readyState==4&&c(d.status<300?d:null)},d.send(null)},d3.text=function(a,b,c){function d(a){c(a&&a.responseText)}arguments.length<3&&(c=b,b=null),d3.xhr(a,b,d)},d3.json=function(a,b){d3.text(a,"application/json",function(a){b(a?JSON.parse(a):null)})},d3.html=function(a,b){d3.text(a,"text/html",function(a){if(a!=null){var c=document.createRange();c.selectNode(document.body),a=c.createContextualFragment(a)}b(a)})},d3.xml=function(a,b,c){function d(a){c(a&&a.responseXML)}arguments.length<3&&(c=b,b=null),d3.xhr(a,b,d)},d3.ns={prefix:{svg:"http://www.w3.org/2000/svg",xhtml:"http://www.w3.org/1999/xhtml",xlink:"http://www.w3.org/1999/xlink",xml:"http://www.w3.org/XML/1998/namespace",xmlns:"http://www.w3.org/2000/xmlns/"},qualify:function(a){var b=a.indexOf(":");return b<0?a:{space:d3.ns.prefix[a.substring(0,b)],local:a.substring(b+1)}}},d3.dispatch=function(a){var b={},c;for(var d=0,e=arguments.length;d<e;d++)c=arguments[d],b[c]=j(c);return b},d3.format=function(a){var b=k.exec(a),c=b[1]||" ",d=b[3]||"",e=b[5],f=+b[6],g=b[7],h=b[8],i=b[9];h&&(h=h.substring(1)),e&&(c="0",g&&(f-=Math.floor((f-1)/4))),i=="d"&&(h="0");return function(a){var b=+a,j=b<0&&(b=-b)?"−":d;if(i=="d"&&b%1)return"";h?a=b.toFixed(h):a=""+b;if(e){var k=a.length+j.length;k<f&&(a=Array(f-k+1).join(c)+a),g&&(a=l(a)),a=j+a}else{g&&(a=l(a)),a=j+a;var k=a.length;k<f&&(a=Array(f-k+1).join(c)+a)}return a}};var k=/(?:([^{])?([<>=^]))?([+\- ])?(#)?(0)?([0-9]+)?(,)?(\.[0-9]+)?([a-zA-Z%])?/,m=t(2),n=t(3),o={linear:function(){return s},poly:t,quad:function(){return m},cubic:function(){return n},sin:function(){return u},exp:function(){return v},circle:function(){return w},elastic:x,back:y,bounce:function(){return z}},p={"in":function(a){return a},out:q,"in-out":r,"out-in":function(a){return r(q(a))}};d3.ease=function(a){var b=a.indexOf("-"),c=b>=0?a.substring(0,b):a,d=b>=0?a.substring(b+1):"in";return p[d](o[c].apply(null,Array.prototype.slice.call(arguments,1)))},d3.event=null,d3.interpolate=function(a,b){if(typeof b=="number")return d3.interpolateNumber(+a,b);if(typeof b=="string")return b in K||/^(#|rgb\(|hsl\()/.test(b)?d3.interpolateRgb(String(a),b):d3.interpolateString(String(a),b);if(b instanceof Array)return d3.interpolateArray(a,b);return d3.interpolateObject(a,b)},d3.interpolateNumber=function(a,b){b-=a;return function(c){return a+b*c}},d3.interpolateRound=function(a,b){b-=a;return function(c){return Math.round(a+b*c)}},d3.interpolateString=function(a,b){var c,d,e,f=0,g=0,h=[],i=[],j,k;for(d=0;c=A.exec(b);++d)c.index&&h.push(b.substring(f,g=c.index)),i.push({i:h.length,x:c[0]}),h.push(null),f=A.lastIndex;f<b.length&&h.push(b.substring(f));for(d=0,j=i.length;(c=A.exec(a))&&d<j;++d){k=i[d];if(k.x==c[0]){if(k.i)if(h[k.i+1]==null){h[k.i-1]+=k.x,h.splice(k.i,1);for(e=d+1;e<j;++e)i[e].i--}else{h[k.i-1]+=k.x+h[k.i+1],h.splice(k.i,2);for(e=d+1;e<j;++e)i[e].i-=2}else if(h[k.i+1]==null)h[k.i]=k.x;else{h[k.i]=k.x+h[k.i+1],h.splice(k.i+1,1);for(e=d+1;e<j;++e)i[e].i--}i.splice(d,1),j--,d--}else k.x=d3.interpolateNumber(parseFloat(c[0]),parseFloat(k.x))}while(d<j)k=i.pop(),h[k.i+1]==null?h[k.i]=k.x:(h[k.i]=k.x+h[k.i+1],h.splice(k.i+1,1)),j--;if(h.length==1)return h[0]==null?i[0].x:function(){return b};return function(a){for(d=0;d<j;++d)h[(k=i[d]).i]=k.x(a);return h.join("")}},d3.interpolateRgb=function(a,b){a=d3.rgb(a),b=d3.rgb(b);var c=a.r,d=a.g,e=a.b,f=b.r-c,g=b.g-d,h=b.b-e;return function(a){return"rgb("+Math.round(c+f*a)+","+Math.round(d+g*a)+","+Math.round(e+h*a)+")"}},d3.interpolateHsl=function(a,b){a=d3.hsl(a),b=d3.hsl(b);var c=a.h,d=a.s,e=a.l,f=b.h-c,g=b.s-d,h=b.l-e;return function(a){return O(c+f*a,d+g*a,e+h*a).toString()}},d3.interpolateArray=function(a,b){var c=[],d=[],e=a.length,f=b.length,g=Math.min(a.length,b.length),h;for(h=0;h<g;++h)c.push(d3.interpolate(a[h],b[h]));for(;h<e;++h)d[h]=a[h];for(;h<f;++h)d[h]=b[h];return function(a){for(h=0;h<g;++h)d[h]=c[h](a);return d}},d3.interpolateObject=function(a,b){var c={},d={},e;for(e in a)e in b?c[e]=D(e)(a[e],b[e]):d[e]=a[e];for(e in b)e in a||(d[e]=b[e]);return function(a){for(e in c)d[e]=c[e](a);return d}};var A=/[-+]?(?:\d+\.\d+|\d+\.|\.\d+|\d+)(?:[eE][-]?\d+)?/g,B=/[-+]?\d*\.?\d*(?:[eE][-]?\d+)?(.*)/,C={background:1,fill:1,stroke:1};d3.rgb=function(a,b,c){return arguments.length==1?H(""+a,E,O):E(~~a,~~b,~~c)};var K={aliceblue:"#f0f8ff",antiquewhite:"#faebd7",aqua:"#00ffff",aquamarine:"#7fffd4",azure:"#f0ffff",beige:"#f5f5dc",bisque:"#ffe4c4",black:"#000000",blanchedalmond:"#ffebcd",blue:"#0000ff",blueviolet:"#8a2be2",brown:"#a52a2a",burlywood:"#deb887",cadetblue:"#5f9ea0",chartreuse:"#7fff00",chocolate:"#d2691e",coral:"#ff7f50",cornflowerblue:"#6495ed",cornsilk:"#fff8dc",crimson:"#dc143c",cyan:"#00ffff",darkblue:"#00008b",darkcyan:"#008b8b",darkgoldenrod:"#b8860b",darkgray:"#a9a9a9",darkgreen:"#006400",darkgrey:"#a9a9a9",darkkhaki:"#bdb76b",darkmagenta:"#8b008b",darkolivegreen:"#556b2f",darkorange:"#ff8c00",darkorchid:"#9932cc",darkred:"#8b0000",darksalmon:"#e9967a",darkseagreen:"#8fbc8f",darkslateblue:"#483d8b",darkslategray:"#2f4f4f",darkslategrey:"#2f4f4f",darkturquoise:"#00ced1",darkviolet:"#9400d3",deeppink:"#ff1493",deepskyblue:"#00bfff",dimgray:"#696969",dimgrey:"#696969",dodgerblue:"#1e90ff",firebrick:"#b22222",floralwhite:"#fffaf0",forestgreen:"#228b22",fuchsia:"#ff00ff",gainsboro:"#dcdcdc",ghostwhite:"#f8f8ff",gold:"#ffd700",goldenrod:"#daa520",gray:"#808080",green:"#008000",greenyellow:"#adff2f",grey:"#808080",honeydew:"#f0fff0",hotpink:"#ff69b4",indianred:"#cd5c5c",indigo:"#4b0082",ivory:"#fffff0",khaki:"#f0e68c",lavender:"#e6e6fa",lavenderblush:"#fff0f5",lawngreen:"#7cfc00",lemonchiffon:"#fffacd",lightblue:"#add8e6",lightcoral:"#f08080",lightcyan:"#e0ffff",lightgoldenrodyellow:"#fafad2",lightgray:"#d3d3d3",lightgreen:"#90ee90",lightgrey:"#d3d3d3",lightpink:"#ffb6c1",lightsalmon:"#ffa07a",lightseagreen:"#20b2aa",lightskyblue:"#87cefa",lightslategray:"#778899",lightslategrey:"#778899",lightsteelblue:"#b0c4de",lightyellow:"#ffffe0",lime:"#00ff00",limegreen:"#32cd32",linen:"#faf0e6",magenta:"#ff00ff",maroon:"#800000",mediumaquamarine:"#66cdaa",mediumblue:"#0000cd",mediumorchid:"#ba55d3",mediumpurple:"#9370db",mediumseagreen:"#3cb371",mediumslateblue:"#7b68ee",mediumspringgreen:"#00fa9a",mediumturquoise:"#48d1cc",mediumvioletred:"#c71585",midnightblue:"#191970",mintcream:"#f5fffa",mistyrose:"#ffe4e1",moccasin:"#ffe4b5",navajowhite:"#ffdead",navy:"#000080",oldlace:"#fdf5e6",olive:"#808000",olivedrab:"#6b8e23",orange:"#ffa500",orangered:"#ff4500",orchid:"#da70d6",palegoldenrod:"#eee8aa",palegreen:"#98fb98",paleturquoise:"#afeeee",palevioletred:"#db7093",papayawhip:"#ffefd5",peachpuff:"#ffdab9",peru:"#cd853f",pink:"#ffc0cb",plum:"#dda0dd",powderblue:"#b0e0e6",purple:"#800080",red:"#ff0000",rosybrown:"#bc8f8f",royalblue:"#4169e1",saddlebrown:"#8b4513",salmon:"#fa8072",sandybrown:"#f4a460",seagreen:"#2e8b57",seashell:"#fff5ee",sienna:"#a0522d",silver:"#c0c0c0",skyblue:"#87ceeb",slateblue:"#6a5acd",slategray:"#708090",slategrey:"#708090",snow:"#fffafa",springgreen:"#00ff7f",steelblue:"#4682b4",tan:"#d2b48c",teal:"#008080",thistle:"#d8bfd8",tomato:"#ff6347",turquoise:"#40e0d0",violet:"#ee82ee",wheat:"#f5deb3",white:"#ffffff",whitesmoke:"#f5f5f5",yellow:"#ffff00",yellowgreen:"#9acd32"};for(var L in K)K[L]=H(K[L],E,O);d3.hsl=function(a,b,c){return arguments.length==1?H(""+a,I,M):M(+a,+b,+c)};var P=function(a,b){return b.querySelector(a)},Q=function(b,c){return a(c.querySelectorAll(b))};typeof Sizzle=="function"&&(P=function(a,b){return Sizzle(a,b)[0]},Q=function(a,b){return Sizzle.uniqueSort(Sizzle(a,b))});var R=S([[document]]);R[0].parentNode=document.documentElement,d3.select=function(a){return typeof a=="string"?R.select(a):S([[a]])},d3.selectAll=function(b){return typeof b=="string"?R.selectAll(b):S([a(b)])},d3.transition=R.transition;var W=0,X=0,$=null,_=0,ba;d3.timer=function(a){bb(a,0)};var bf=window.requestAnimationFrame||window.webkitRequestAnimationFrame||window.mozRequestAnimationFrame||window.oRequestAnimationFrame||window.msRequestAnimationFrame||function(a){setTimeout(a,17)};d3.scale={},d3.scale.linear=function(){function j(c){var d=Math.min(a,b),e=Math.max(a,b),f=e-d,g=Math.pow(10,Math.floor(Math.log(f/c)/Math.LN10)),h=c/(f/g);h<=.15?g*=10:h<=.35?g*=5:h<=.75&&(g*=2);return{start:Math.ceil(d/g)*g,stop:Math.floor(e/g)*g+g*.5,step:g}}function i(b){return h((b-a)*e)}var a=0,b=1,c=0,d=1,e=1,f=1,g=d3.interpolate,h=g(c,d);i.invert=function(b){return(b-c)*f+a},i.domain=function(g){if(!arguments.length)return[a,b];a=+g[0],b=+g[1],e=1/(b-a),f=(b-a)/(d-c);return i},i.range=function(e){if(!arguments.length)return[c,d];c=e[0],d=e[1],f=(b-a)/(d-c),h=g(c,d);return i},i.rangeRound=function(a){return i.range(a).interpolate(d3.interpolateRound)},i.interpolate=function(a){if(!arguments.length)return g;h=(g=a)(c,d);return i},i.ticks=function(a){var b=j(a);return d3.range(b.start,b.stop,b.step)},i.tickFormat=function(a){var b=Math.max(0,-Math.floor(Math.log(j(a).step)/Math.LN10+.01));return d3.format(",."+b+"f")};return i},d3.scale.log=function(){function d(c){return a(b(c))}var a=d3.scale.linear(),b=bg,c=b.pow;d.invert=function(b){return c(a.invert(b))},d.domain=function(e){if(!arguments.length)return a.domain().map(c);b=(e[0]||e[1])<0?bh:bg,c=b.pow,a.domain(e.map(b));return d},d.range=d3.rebind(d,a.range),d.rangeRound=d3.rebind(d,a.rangeRound),d.interpolate=d3.rebind(d,a.interpolate),d.ticks=function(){var d=a.domain(),e=[];if(d.every(isFinite)){var f=Math.floor(d[0]),g=Math.ceil(d[1]),h=c(d[0]),i=c(d[1]);if(b===bh){e.push(c(f));for(;f++<g;)for(var j=9;j>0;j--)e.push(c(f)*j)}else{for(;f<g;f++)for(var j=1;j<10;j++)e.push(c(f)*j);e.push(c(f))}for(f=0;e[f]<h;f++);for(g=e.length;e[g-1]>i;g--);e=e.slice(f,g)}return e},d.tickFormat=function(){return function(a){return a.toPrecision(1)}};return d},bg.pow=function(a){return Math.pow(10,a)},bh.pow=function(a){return-Math.pow(10,-a)},d3.scale.pow=function(){function f(b){return a(d(b))}var a=d3.scale.linear(),b=d3.scale.linear(),c=1,d=Number,e=d;f.invert=function(b){return e(a.invert(b))},f.domain=function(g){if(!arguments.length)return a.domain().map(e);var h=(g[0]||g[1])<0?bj:bi;d=h(c),e=h(1/c),a.domain(g.map(d)),b.domain(g);return f},f.range=d3.rebind(f,a.range),f.rangeRound=d3.rebind(f,a.rangeRound),f.interpolate=d3.rebind(f,a.interpolate),f.ticks=b.ticks,f.tickFormat=b.tickFormat,f.exponent=function(a){if(!arguments.length)return c;var b=f.domain();c=a;return f.domain(b)};return f},d3.scale.sqrt=function(){return d3.scale.pow().exponent(.5)},d3.scale.ordinal=function(){function e(d){var e=d in b?b[d]:b[d]=a.push(d)-1;return c[e%c.length]}var a=[],b={},c=[],d=0;e.domain=function(c){if(!arguments.length)return a;a=c,b={};var d=-1,f=-1,g=a.length;while(++d<g)c=a[d],c in b||(b[c]=++f);return e},e.range=function(a){if(!arguments.length)return c;c=a;return e},e.rangePoints=function(b,f){arguments.length<2&&(f=0);var g=b[0],h=b[1],i=(h-g)/(a.length-1+f);c=a.length==1?[(g+h)/2]:d3.range(g+i*f/2,h+i/2,i),d=0;return e},e.rangeBands=function(b,f){arguments.length<2&&(f=0);var g=b[0],h=b[1],i=(h-g)/(a.length+f);c=d3.range(g+i*f,h,i),d=i*(1-f);return e},e.rangeRoundBands=function(b,f){arguments.length<2&&(f=0);var g=b[0],h=b[1],i=h-g,j=Math.floor(i/(a.length+f)),k=i-(a.length-f)*j;c=d3.range(g+Math.round(k/2),h,j),d=Math.round(j*(1-f));return e},e.rangeBand=function(){return d};return e},d3.scale.category10=function(){return d3.scale.ordinal().range(bk)},d3.scale.category20=function(){return d3.scale.ordinal().range(bl)},d3.scale.category20b=function(){return d3.scale.ordinal().range(bm)},d3.scale.category20c=function(){return d3.scale.ordinal().range(bn)};var bk=["#1f77b4","#ff7f0e","#2ca02c","#d62728","#9467bd","#8c564b","#e377c2","#7f7f7f","#bcbd22","#17becf"],bl=["#1f77b4","#aec7e8","#ff7f0e","#ffbb78","#2ca02c","#98df8a","#d62728","#ff9896","#9467bd","#c5b0d5","#8c564b","#c49c94","#e377c2","#f7b6d2","#7f7f7f","#c7c7c7","#bcbd22","#dbdb8d","#17becf","#9edae5"],bm=["#393b79","#5254a3","#6b6ecf","#9c9ede","#637939","#8ca252","#b5cf6b","#cedb9c","#8c6d31","#bd9e39","#e7ba52","#e7cb94","#843c39","#ad494a","#d6616b","#e7969c","#7b4173","#a55194","#ce6dbd","#de9ed6"],bn=["#3182bd","#6baed6","#9ecae1","#c6dbef","#e6550d","#fd8d3c","#fdae6b","#fdd0a2","#31a354","#74c476","#a1d99b","#c7e9c0","#756bb1","#9e9ac8","#bcbddc","#dadaeb","#636363","#969696","#bdbdbd","#d9d9d9"];d3.scale.quantile=function(){function f(a){return b[e(a)]}function e(a){if(isNaN(a=+a))return NaN;var b=0,d=c.length-1;while(b<=d){var e=b+d>>1,f=c[e];if(f<a)b=e+1;else if(f>a)d=e-1;else return e}return d<0?0:d}function d(){var d=-1,e=c.length=b.length,f=a.length/e;while(++d<e)c[d]=a[~~(d*f)]}var a=[],b=[],c=[];f.domain=function(b){if(!arguments.length)return a;a=b.filter(function(a){return!isNaN(a)}).sort(d3.ascending),d();return f},f.range=function(a){if(!arguments.length)return b;b=a,d();return f},f.quantiles=function(){return c};return f},d3.scale.quantize=function(){function f(b){return e[Math.max(0,Math.min(d,Math.floor(c*(b-a))))]}var a=0,b=1,c=2,d=1,e=[0,1];f.domain=function(d){if(!arguments.length)return[a,b];a=d[0],b=d[1],c=e.length/(b-a);return f},f.range=function(g){if(!arguments.length)return e;e=g,c=e.length/(b-a),d=e.length-1;return f};return f},d3.svg={},d3.svg.arc=function(){function f(){var e=a.apply(this,arguments),f=b.apply(this,arguments),g=c.apply(this,arguments)+bo,h=d.apply(this,arguments)+bo,i=h-g,j=i<Math.PI?"0":"1",k=Math.cos(g),l=Math.sin(g),m=Math.cos(h),n=Math.sin(h);return i>=bp?e?"M0,"+f+"A"+f+","+f+" 0 1,1 0,"+ -f+"A"+f+","+f+" 0 1,1 0,"+f+"M0,"+e+"A"+e+","+e+" 0 1,1 0,"+ -e+"A"+e+","+e+" 0 1,1 0,"+e+"Z":"M0,"+f+"A"+f+","+f+" 0 1,1 0,"+ -f+"A"+f+","+f+" 0 1,1 0,"+f+"Z":e?"M"+f*k+","+f*l+"A"+f+","+f+" 0 "+j+",1 "+f*m+","+f*n+"L"+e*m+","+e*n+"A"+e+","+e+" 0 "+j+",0 "+e*k+","+e*l+"Z":"M"+f*k+","+f*l+"A"+f+","+f+" 0 "+j+",1 "+f*m+","+f*n+"L0,0"+"Z"}var a=bq,b=br,c=bs,d=bt;f.innerRadius=function(b){if(!arguments.length)return a;a=e(b);return f},f.outerRadius=function(a){if(!arguments.length)return b;b=e(a);return f},f.startAngle=function(a){if(!arguments.length)return c;c=e(a);return f},f.endAngle=function(a){if(!arguments.length)return d;d=e(a);return f},f.centroid=function(){var e=(a.apply(this,arguments)+b.apply(this,arguments))/2,f=(c.apply(this,arguments)+d.apply(this,arguments))/2+bo;return[Math.cos(f)*e,Math.sin(f)*e]};return f};var bo=-Math.PI/2,bp=2*Math.PI-1e-6;d3.svg.line=function(){function f(c){return c.length<1?null:"M"+d(bu(this,c,a,b),e)}var a=bv,b=bw,c="linear",d=bx[c],e=.7;f.x=function(b){if(!arguments.length)return a;a=b;return f},f.y=function(a){if(!arguments.length)return b;b=a;return f},f.interpolate=function(a){if(!arguments.length)return c;d=bx[c=a];return f},f.tension=function(a){if(!arguments.length)return e;e=a;return f};return f};var bx={linear:by,"step-before":bz,"step-after":bA,basis:bF,"basis-closed":bG,cardinal:bC,"cardinal-closed":bB},bI=[0,2/3,1/3,0],bJ=[0,1/3,2/3,0],bK=[0,1/6,2/3,1/6];d3.svg.area=function(){function g(d){return d.length<1?null:"M"+e(bu(this,d,a,c),f)+"L"+e(bu(this <add>,d,a,b).reverse(),f)+"Z"}var a=bv,b=bM,c=bw,d="linear",e=bx[d],f=.7;g.x=function(b){if(!arguments.length)return a;a=b;return g},g.y0=function(a){if(!arguments.length)return b;b=a;return g},g.y1=function(a){if(!arguments.length)return c;c=a;return g},g.interpolate=function(a){if(!arguments.length)return d;e=bx[d=a];return g},g.tension=function(a){if(!arguments.length)return f;f=a;return g};return g},d3.svg.chord=function(){function k(a,b,c,d){return"Q 0,0 "+d}function j(a,b){return"A"+a+","+a+" 0 0,1 "+b}function i(a,b){return a.a0==b.a0&&a.a1==b.a1}function h(a,b,e,g){var h=b.call(a,e,g),i=c.call(a,h,g),j=d.call(a,h,g)+bo,k=f.call(a,h,g)+bo;return{r:i,a0:j,a1:k,p0:[i*Math.cos(j),i*Math.sin(j)],p1:[i*Math.cos(k),i*Math.sin(k)]}}function g(c,d){var e=h(this,a,c,d),f=h(this,b,c,d);return"M"+e.p0+j(e.r,e.p1)+(i(e,f)?k(e.r,e.p1,e.r,e.p0):k(e.r,e.p1,f.r,f.p0)+j(f.r,f.p1)+k(f.r,f.p1,e.r,e.p0))+"Z"}var a=bN,b=bO,c=bP,d=bs,f=bt;g.radius=function(a){if(!arguments.length)return c;c=e(a);return g},g.source=function(b){if(!arguments.length)return a;a=e(b);return g},g.target=function(a){if(!arguments.length)return b;b=e(a);return g},g.startAngle=function(a){if(!arguments.length)return d;d=e(a);return g},g.endAngle=function(a){if(!arguments.length)return f;f=e(a);return g};return g},d3.svg.mouse=function(a){var b=(a.ownerSVGElement||a).createSVGPoint();if(bS<0&&(window.scrollX||window.scrollY)){var c=d3.select(document.body).append("svg:svg").style("position","absolute").style("top",0).style("left",0),d=c[0][0].getScreenCTM();bS=!d.f&&!d.e,c.remove()}bS?(b.x=d3.event.pageX,b.y=d3.event.pageY):(b.x=d3.event.clientX,b.y=d3.event.clientY),b=b.matrixTransform(a.getScreenCTM().inverse());return[b.x,b.y]};var bS=/WebKit/.test(navigator.userAgent)?-1:0;d3.svg.symbol=function(){function c(c,d){return(bV[a.call(this,c,d)]||bV.circle)(b.call(this,c,d))}var a=bU,b=bT;c.type=function(b){if(!arguments.length)return a;a=e(b);return c},c.size=function(a){if(!arguments.length)return b;b=e(a);return c};return c},d3.svg.symbolTypes=["circle","cross","diamond","square","triangle-down","triangle-up"];var bV={circle:function(a){var b=Math.sqrt(a/Math.PI);return"M0,"+b+"A"+b+","+b+" 0 1,1 0,"+ -b+"A"+b+","+b+" 0 1,1 0,"+b+"Z"},cross:function(a){var b=Math.sqrt(a/5)/2;return"M"+ -3*b+","+ -b+"H"+ -b+"V"+ -3*b+"H"+b+"V"+ -b+"H"+3*b+"V"+b+"H"+b+"V"+3*b+"H"+ -b+"V"+b+"H"+ -3*b+"Z"},diamond:function(a){var b=Math.sqrt(a/(2*bX)),c=b*bX;return"M0,"+ -b+"L"+c+",0"+" 0,"+b+" "+ -c+",0"+"Z"},square:function(a){var b=Math.sqrt(a)/2;return"M"+ -b+","+ -b+"L"+b+","+ -b+" "+b+","+b+" "+ -b+","+b+"Z"},"triangle-down":function(a){var b=Math.sqrt(a/bW),c=b*bW/2;return"M0,"+c+"L"+b+","+ -c+" "+ -b+","+ -c+"Z"},"triangle-up":function(a){var b=Math.sqrt(a/bW),c=b*bW/2;return"M0,"+ -c+"L"+b+","+c+" "+ -b+","+c+"Z"}},bW=Math.sqrt(3),bX=Math.tan(30*Math.PI/180)})() <ide>\ No newline at end of file <ide><path>src/core/selection.js <ide> function d3_selection(groups) { <ide> <ide> if (join) { <ide> var nodeByKey = {}, <del> exitData = [], <ide> keys = [], <ide> key, <ide> j = groupData.length;
3
Javascript
Javascript
add isarray in devtools utils
580e2f56d54b6f7868a98d6bd5ce07bfaa3cdbe2
<ide><path>packages/react-devtools-shared/src/isArray.js <add>/** <add> * Copyright (c) Facebook, Inc. and its affiliates. <add> * <add> * This source code is licensed under the MIT license found in the <add> * LICENSE file in the root directory of this source tree. <add> * <add> * @flow <add> */ <add> <add>const isArray = Array.isArray; <add> <add>export default isArray; <ide><path>packages/react-devtools-shared/src/utils.js <ide> import { <ide> } from 'react-devtools-shared/src/types'; <ide> import {localStorageGetItem, localStorageSetItem} from './storage'; <ide> import {meta} from './hydration'; <add>import isArray from './isArray'; <ide> <ide> import type {ComponentFilter, ElementType} from './types'; <ide> import type {LRUCache} from 'react-devtools-shared/src/types'; <ide> export function deletePathInObject( <ide> if (object != null) { <ide> const parent = getInObject(object, path.slice(0, length - 1)); <ide> if (parent) { <del> if (Array.isArray(parent)) { <add> if (isArray(parent)) { <ide> parent.splice(((last: any): number), 1); <ide> } else { <ide> delete parent[last]; <ide> export function renamePathInObject( <ide> const lastOld = oldPath[length - 1]; <ide> const lastNew = newPath[length - 1]; <ide> parent[lastNew] = parent[lastOld]; <del> if (Array.isArray(parent)) { <add> if (isArray(parent)) { <ide> parent.splice(((lastOld: any): number), 1); <ide> } else { <ide> delete parent[lastOld]; <ide> export function getDataType(data: Object): DataType { <ide> return 'number'; <ide> } <ide> case 'object': <del> if (Array.isArray(data)) { <add> if (isArray(data)) { <ide> return 'array'; <ide> } else if (ArrayBuffer.isView(data)) { <ide> return hasOwnProperty.call(data.constructor, 'BYTES_PER_ELEMENT') <ide> export function formatDataForPreview( <ide> // To mimic their behavior, detect if we've been given an entries tuple. <ide> // Map(2) {"abc" => 123, "def" => 123} <ide> // Set(2) {"abc", 123} <del> if (Array.isArray(entryOrEntries)) { <add> if (isArray(entryOrEntries)) { <ide> const key = formatDataForPreview(entryOrEntries[0], true); <ide> const value = formatDataForPreview(entryOrEntries[1], false); <ide> formatted += `${key} => ${value}`;
2
Javascript
Javascript
release script filters devtools npm pakcages
e8c7ddeef2919560da9ffa7e1043a4c6418c8701
<ide><path>scripts/release/utils.js <ide> const createLogger = require('progress-estimator'); <ide> const prompt = require('prompt-promise'); <ide> const theme = require('./theme'); <ide> <add>// The following packages are published to NPM but not by this script. <add>// They are released through a separate process. <add>const RELEASE_SCRIPT_PACKAGE_SKIPLIST = [ <add> 'react-devtools', <add> 'react-devtools-core', <add> 'react-devtools-inline', <add>]; <add> <ide> // https://www.npmjs.com/package/progress-estimator#configuration <ide> const logger = createLogger({ <ide> storagePath: join(__dirname, '.progress-estimator'), <ide> const getArtifactsList = async buildID => { <ide> process.env.CIRCLE_CI_API_TOKEN <ide> }`; <ide> const workflowMetadata = await http.get(workflowMetadataURL, true); <del> <del> const job = workflowMetadata.jobs.find( <add> const job = workflowMetadata.items.find( <ide> ({name}) => name === 'process_artifacts' <ide> ); <ide> if (!job || !job.job_number) { <ide> const getPublicPackages = () => { <ide> const packagesRoot = join(__dirname, '..', '..', 'packages'); <ide> <ide> return readdirSync(packagesRoot).filter(dir => { <add> if (RELEASE_SCRIPT_PACKAGE_SKIPLIST.includes(dir)) { <add> return false; <add> } <add> <ide> const packagePath = join(packagesRoot, dir, 'package.json'); <ide> <ide> if (dir.charAt(0) !== '.' && statSync(packagePath).isFile()) {
1
Ruby
Ruby
ignore broken linkage with llvm libc++
957c2c983cc7b09221442ef976764c96e3b0ad83
<ide><path>Library/Homebrew/linkage_checker.rb <ide> def sort_by_formula_full_name!(arr) <ide> def harmless_broken_link?(dylib) <ide> # libgcc_s_* is referenced by programs that use the Java Service Wrapper, <ide> # and is harmless on x86(_64) machines <add> # dyld will fall back to Apple libc++ if LLVM's is not available. <ide> [ <ide> "/usr/lib/libgcc_s_ppc64.1.dylib", <ide> "/opt/local/lib/libgcc/libgcc_s.1.dylib", <add> # TODO: Report linkage with `/usr/lib/libc++.1.dylib` when this link is broken. <add> "#{HOMEBREW_PREFIX}/opt/llvm/lib/libc++.1.dylib", <ide> ].include?(dylib) <ide> end <ide>
1
Ruby
Ruby
fix interpolation check
62db042277dbd60d8b6ff74416e84c053a62b781
<ide><path>Library/Homebrew/cmd/audit.rb <ide> def audit_text <ide> end <ide> <ide> # Check for string interpolation of single values. <del> if text =~ /(system|inreplace|gsub!|change_make_var!) .* ['"]#\{(\w+(\.\w+)?)\}['"]/ <add> if text =~ /(system|inreplace|gsub!|change_make_var!).*[ ,]"#\{([\w.]+)\}"/ <ide> problem "Don't need to interpolate \"#{$2}\" with #{$1}" <ide> end <ide>
1
PHP
PHP
fix error in sqlite tests
d73bc6b8674cd318c0af79882c86bb4c54efd79d
<ide><path>lib/Cake/Test/Case/Model/Behavior/TranslateBehaviorTest.php <ide> public function testSaveCreate() { <ide> 'slug' => 'fourth_translated', <ide> 'title' => 'Leyenda #4', <ide> 'content' => 'Contenido #4', <del> 'translated_article_id' => null <add> 'translated_article_id' => 1, <ide> ); <ide> $TestModel->create($data); <ide> $TestModel->save(); <ide> public function testSaveAllTranslatedAssociations() { <ide> ), <ide> 'TranslatedItem' => array( <ide> array( <add> 'slug' => '', <ide> 'title' => 'Nuevo leyenda #1', <ide> 'content' => 'Upraveny obsah #1' <ide> ), <ide> array( <add> 'slug' => '', <ide> 'title' => 'New Title #2', <ide> 'content' => 'New Content #2' <ide> ),
1
Ruby
Ruby
fix specs in testball
d07defa7c11449a776ab9f5c63f437c576806195
<ide><path>Library/Homebrew/test/test_bucket.rb <ide> def test_brew_h <ide> <ide> shutup do <ide> assert_nothing_raised do <del> f=TestBallWithRealPath.new <add> f = Class.new(TestBall) do <add> def initialize(*) <add> super <add> @path = Pathname.new(__FILE__) <add> end <add> end.new <ide> Homebrew.info_formula f <ide> Homebrew.prune <ide> #TODO test diy function too <ide> def test_brew_h <ide> def test_brew_cleanup <ide> require 'cmd/cleanup' <ide> <del> f1 = TestBall.new <del> f1.instance_eval { @version = Version.new("0.1") } <del> f1.active_spec.instance_eval { @version = Version.new("0.1") } <del> f2 = TestBall.new <del> f2.instance_eval { @version = Version.new("0.2") } <del> f2.active_spec.instance_eval { @version = Version.new("0.2") } <del> f3 = TestBall.new <del> f3.instance_eval { @version = Version.new("0.3") } <del> f3.active_spec.instance_eval { @version = Version.new("0.3") } <add> f1 = Class.new(TestBall) { version '0.1' }.new <add> f2 = Class.new(TestBall) { version '0.2' }.new <add> f3 = Class.new(TestBall) { version '0.3' }.new <ide> <ide> shutup do <ide> f1.brew { f1.install } <ide><path>Library/Homebrew/test/test_formula.rb <ide> class FormulaTests < Test::Unit::TestCase <ide> include VersionAssertions <ide> <ide> def test_prefix <del> shutup do <del> TestBall.new.brew do |f| <del> assert_equal File.expand_path(f.prefix), (HOMEBREW_CELLAR+f.name+'0.1').to_s <del> assert_kind_of Pathname, f.prefix <del> end <del> end <add> f = TestBall.new <add> assert_equal File.expand_path(f.prefix), (HOMEBREW_CELLAR+f.name+'0.1').to_s <add> assert_kind_of Pathname, f.prefix <ide> end <ide> <ide> def test_class_naming <ide> def test_revised_bottle_specs <ide> end <ide> <ide> def test_custom_version_scheme <del> f = CustomVersionSchemeTestBall.new <add> scheme = Class.new(Version) <add> f = Class.new(TestBall) { version '1.0' => scheme }.new <ide> <ide> assert_version_equal '1.0', f.version <del> assert_instance_of CustomVersionScheme, f.version <add> assert_instance_of scheme, f.version <ide> end <ide> end <ide><path>Library/Homebrew/test/test_versions.rb <ide> require 'test/testball' <ide> require 'version' <ide> <del>class TestBadVersion < TestBall <del> def initialize name=nil <del> @stable = SoftwareSpec.new <del> @stable.version "versions can't have spaces" <del> super 'testbadversion' <del> end <del>end <del> <ide> class VersionComparisonTests < Test::Unit::TestCase <ide> include VersionAssertions <ide> <ide> def test_no_version <ide> end <ide> <ide> def test_bad_version <del> assert_raises(RuntimeError) { TestBadVersion.new } <add> assert_raises(RuntimeError) do <add> Class.new(TestBall) do <add> version "versions can't have spaces" <add> end.new <add> end <ide> end <ide> <ide> def test_version_all_dots <ide><path>Library/Homebrew/test/testball.rb <ide> require 'formula' <ide> <ide> class TestBall < Formula <del> def initialize name=nil <add> def initialize(*) <ide> @homepage = 'http://example.com/' <del> @stable ||= SoftwareSpec.new <del> @stable.url "file:///#{TEST_FOLDER}/tarballs/testball-0.1.tbz" <add> self.class.instance_eval do <add> @stable ||= SoftwareSpec.new <add> @stable.url "file:///#{TEST_FOLDER}/tarballs/testball-0.1.tbz" <add> @stable.sha1 "482e737739d946b7c8cbaf127d9ee9c148b999f5" <add> end <ide> super "testball" <ide> end <ide> def install <ide> def install <ide> end <ide> end <ide> <del>class TestBallWithRealPath < TestBall <del> def initialize name=nil <del> super "testballwithrealpath" <del> @path = Pathname.new(__FILE__) <del> end <del>end <del> <ide> class TestBallWithMirror < Formula <ide> url "file:///#{TEST_FOLDER}/bad_url/testball-0.1.tbz" <ide> mirror "file:///#{TEST_FOLDER}/tarballs/testball-0.1.tbz" <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "testballwithmirror" <ide> end <ide> end <ide> class ConfigureFails < Formula <ide> version '1.0.0' <ide> sha1 'b36c65e5de86efef1b3a7e9cf78a98c186b400b3' <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "configurefails" <ide> end <ide> <ide> class SpecTestBall < Formula <ide> sha1 '8badf00d8badf00d8badf00d8badf00d8badf00d' => :mountain_lion <ide> end <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "spectestball" <ide> end <ide> end <ide> class ExplicitVersionSpecTestBall < Formula <ide> sha1 '8badf00d8badf00d8badf00d8badf00d8badf00d' => :mountain_lion <ide> end <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "explicitversionspectestball" <ide> end <ide> end <ide> class HeadOnlySpecTestBall < Formula <ide> homepage 'http://example.com' <ide> head 'https://github.com/mxcl/homebrew.git' <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "headyonlyspectestball" <ide> end <ide> end <ide> class IncompleteStableSpecTestBall < Formula <ide> head 'https://github.com/mxcl/homebrew.git' <ide> sha1 '482e737739d946b7c8cbaf127d9ee9c148b999f5' <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "incompletestablespectestball" <ide> end <ide> end <ide> class HeadOnlyWithVersionSpecTestBall < Formula <ide> head 'https://github.com/mxcl/homebrew.git' <ide> version '0.3' <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "headonlywithversionspectestball" <ide> end <ide> end <ide> class ExplicitStrategySpecTestBall < Formula <ide> url 'file:///foo.com/testball-devel', :using => :bzr, :tag => '0.3' <ide> end <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "explicitstrategyspectestball" <ide> end <ide> end <ide> class SnowLeopardBottleSpecTestBall < Formula <ide> sha1 'deadbeefdeadbeefdeadbeefdeadbeefdeadbeef' => :snow_leopard <ide> end <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "snowleopardbottlespectestball" <ide> end <ide> end <ide> class LionBottleSpecTestBall < Formula <ide> sha1 'deadbeefdeadbeefdeadbeefdeadbeefdeadbeef' => :lion <ide> end <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "lionbottlespectestball" <ide> end <ide> end <ide> class AllCatsBottleSpecTestBall < Formula <ide> sha1 '8badf00d8badf00d8badf00d8badf00d8badf00d' => :mountain_lion <ide> end <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "allcatsbottlespectestball" <ide> end <ide> end <ide> class RevisedBottleSpecTestBall < Formula <ide> sha1 '8badf00d8badf00d8badf00d8badf00d8badf00d' => :mountain_lion <ide> end <ide> <del> def initialize name=nil <add> def initialize(*) <ide> super "revisedbottlespectestball" <ide> end <ide> end <del> <del>class CustomVersionScheme < Version <del>end <del> <del>class CustomVersionSchemeTestBall < Formula <del> homepage 'http://example.com' <del> url 'file:///foo.com/testball-0.1.tbz' <del> sha1 '482e737739d946b7c8cbaf127d9ee9c148b999f5' <del> version '1.0' => CustomVersionScheme <del> <del> def initialize name=nil <del> super "customversionschemetestball" <del> end <del>end
4
Python
Python
consolidate weights files
ca8172a50fd4d6a3e22960d60dae3bf112721dbd
<ide><path>keras/applications/densenet.py <ide> from .imagenet_utils import _obtain_input_shape <ide> <ide> <del>DENSENET121_WEIGHT_PATH = 'https://github.com/taehoonlee/deep-learning-models/releases/download/densenet/densenet121_weights_tf_dim_ordering_tf_kernels.h5' <del>DENSENET121_WEIGHT_PATH_NO_TOP = 'https://github.com/taehoonlee/deep-learning-models/releases/download/densenet/densenet121_weights_tf_dim_ordering_tf_kernels_notop.h5' <del>DENSENET169_WEIGHT_PATH = 'https://github.com/taehoonlee/deep-learning-models/releases/download/densenet/densenet169_weights_tf_dim_ordering_tf_kernels.h5' <del>DENSENET169_WEIGHT_PATH_NO_TOP = 'https://github.com/taehoonlee/deep-learning-models/releases/download/densenet/densenet169_weights_tf_dim_ordering_tf_kernels_notop.h5' <del>DENSENET201_WEIGHT_PATH = 'https://github.com/taehoonlee/deep-learning-models/releases/download/densenet/densenet201_weights_tf_dim_ordering_tf_kernels.h5' <del>DENSENET201_WEIGHT_PATH_NO_TOP = 'https://github.com/taehoonlee/deep-learning-models/releases/download/densenet/densenet201_weights_tf_dim_ordering_tf_kernels_notop.h5' <add>DENSENET121_WEIGHT_PATH = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/densenet121_weights_tf_dim_ordering_tf_kernels.h5' <add>DENSENET121_WEIGHT_PATH_NO_TOP = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/densenet121_weights_tf_dim_ordering_tf_kernels_notop.h5' <add>DENSENET169_WEIGHT_PATH = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/densenet169_weights_tf_dim_ordering_tf_kernels.h5' <add>DENSENET169_WEIGHT_PATH_NO_TOP = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/densenet169_weights_tf_dim_ordering_tf_kernels_notop.h5' <add>DENSENET201_WEIGHT_PATH = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/densenet201_weights_tf_dim_ordering_tf_kernels.h5' <add>DENSENET201_WEIGHT_PATH_NO_TOP = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/densenet201_weights_tf_dim_ordering_tf_kernels_notop.h5' <ide> <ide> <ide> def dense_block(x, blocks, name): <ide><path>keras/applications/nasnet.py <ide> from ..applications.imagenet_utils import decode_predictions <ide> from .. import backend as K <ide> <del>NASNET_MOBILE_WEIGHT_PATH = 'https://github.com/titu1994/Keras-NASNet/releases/download/v1.2/NASNet-mobile.h5' <del>NASNET_MOBILE_WEIGHT_PATH_NO_TOP = 'https://github.com/titu1994/Keras-NASNet/releases/download/v1.2/NASNet-mobile-no-top.h5' <del>NASNET_LARGE_WEIGHT_PATH = 'https://github.com/titu1994/Keras-NASNet/releases/download/v1.2/NASNet-large.h5' <del>NASNET_LARGE_WEIGHT_PATH_NO_TOP = 'https://github.com/titu1994/Keras-NASNet/releases/download/v1.2/NASNet-large-no-top.h5' <add>NASNET_MOBILE_WEIGHT_PATH = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/NASNet-mobile.h5' <add>NASNET_MOBILE_WEIGHT_PATH_NO_TOP = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/NASNet-mobile-no-top.h5' <add>NASNET_LARGE_WEIGHT_PATH = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/NASNet-large.h5' <add>NASNET_LARGE_WEIGHT_PATH_NO_TOP = 'https://github.com/fchollet/deep-learning-models/releases/download/v0.8/NASNet-large-no-top.h5' <ide> <ide> <ide> def NASNet(input_shape=None,
2
Javascript
Javascript
use array#includes instead of array#indexof
c8d3a73c8b673792e315759b70cf4822b64b3e45
<ide><path>lib/_http_client.js <ide> function ClientRequest(input, options, cb) { <ide> // https://tools.ietf.org/html/rfc3986#section-3.2.2 <ide> var posColon = hostHeader.indexOf(':'); <ide> if (posColon !== -1 && <del> hostHeader.indexOf(':', posColon + 1) !== -1 && <add> hostHeader.includes(':', posColon + 1) && <ide> hostHeader.charCodeAt(0) !== 91/* '[' */) { <ide> hostHeader = `[${hostHeader}]`; <ide> } <ide><path>lib/_stream_readable.js <ide> Readable.prototype.pipe = function(dest, pipeOpts) { <ide> // also returned false. <ide> // => Check whether `dest` is still a piping destination. <ide> if (((state.pipesCount === 1 && state.pipes === dest) || <del> (state.pipesCount > 1 && state.pipes.indexOf(dest) !== -1)) && <add> (state.pipesCount > 1 && state.pipes.includes(dest))) && <ide> !cleanedUp) { <ide> debug('false write response, pause', state.awaitDrain); <ide> state.awaitDrain++; <ide><path>lib/assert.js <ide> function getErrMessage(message, fn) { <ide> // Flush unfinished multi byte characters. <ide> decoder.end(); <ide> // Always normalize indentation, otherwise the message could look weird. <del> if (message.indexOf('\n') !== -1) { <add> if (message.includes('\n')) { <ide> if (EOL === '\r\n') { <ide> message = message.replace(/\r\n/g, '\n'); <ide> } <ide><path>lib/child_process.js <ide> exports.fork = function fork(modulePath /* , args, options */) { <ide> // and stderr from the parent if silent isn't set. <ide> options.stdio = options.silent ? stdioStringToArray('pipe') : <ide> stdioStringToArray('inherit'); <del> } else if (options.stdio.indexOf('ipc') === -1) { <add> } else if (!options.stdio.includes('ipc')) { <ide> throw new ERR_CHILD_PROCESS_IPC_REQUIRED('options.stdio'); <ide> } <ide> <ide><path>lib/internal/cluster/shared_handle.js <ide> function SharedHandle(key, address, port, addressType, fd, flags) { <ide> } <ide> <ide> SharedHandle.prototype.add = function(worker, send) { <del> assert(this.workers.indexOf(worker) === -1); <add> assert(!this.workers.includes(worker)); <ide> this.workers.push(worker); <ide> send(this.errno, null, this.handle); <ide> }; <ide><path>lib/internal/console/constructor.js <ide> Console.prototype[kWriteToConsole] = function(streamSymbol, string) { <ide> this._stdoutErrorHandler : this._stderrErrorHandler; <ide> <ide> if (groupIndent.length !== 0) { <del> if (string.indexOf('\n') !== -1) { <add> if (string.includes('\n')) { <ide> string = string.replace(/\n/g, `\n${groupIndent}`); <ide> } <ide> string = groupIndent + string; <ide><path>lib/internal/fs/utils.js <ide> function nullCheck(path, propName, throwError = true) { <ide> <ide> // We can only perform meaningful checks on strings and Uint8Arrays. <ide> if (!pathIsString && !pathIsUint8Array || <del> pathIsString && path.indexOf('\u0000') === -1 || <del> pathIsUint8Array && path.indexOf(0) === -1) { <add> pathIsString && !path.includes('\u0000') || <add> pathIsUint8Array && !path.includes(0)) { <ide> return; <ide> } <ide> <ide><path>lib/internal/util/inspect.js <ide> function strEscape(str) { <ide> // instead wrap the text in double quotes. If double quotes exist, check for <ide> // backticks. If they do not exist, use those as fallback instead of the <ide> // double quotes. <del> if (str.indexOf("'") !== -1) { <add> if (str.includes("'")) { <ide> // This invalidates the charCode and therefore can not be matched for <ide> // anymore. <del> if (str.indexOf('"') === -1) { <add> if (!str.includes('"')) { <ide> singleQuote = -1; <del> } else if (str.indexOf('`') === -1 && str.indexOf('${') === -1) { <add> } else if (!str.includes('`') && !str.includes('${')) { <ide> singleQuote = -2; <ide> } <ide> if (singleQuote !== 39) { <ide> function formatValue(ctx, value, recurseTimes, typedArray) { <ide> <ide> // Using an array here is actually better for the average case than using <ide> // a Set. `seen` will only check for the depth and will never grow too large. <del> if (ctx.seen.indexOf(value) !== -1) <add> if (ctx.seen.includes(value)) <ide> return ctx.stylize('[Circular]', 'special'); <ide> <ide> return formatRaw(ctx, value, recurseTimes, typedArray); <ide><path>lib/url.js <ide> Url.prototype.format = function format() { <ide> host = auth + this.host; <ide> } else if (this.hostname) { <ide> host = auth + ( <del> this.hostname.indexOf(':') === -1 ? <del> this.hostname : <del> '[' + this.hostname + ']' <add> this.hostname.includes(':') ? <add> '[' + this.hostname + ']' : <add> this.hostname <ide> ); <ide> if (this.port) { <ide> host += ':' + this.port;
9
Javascript
Javascript
use matching test command for equivalence tests
b6c423daadaa35da3f34048628df9635505eecb1
<ide><path>packages/react/src/__tests__/ReactClassEquivalence-test.js <ide> describe('ReactClassEquivalence', () => { <ide> function runJest(testFile) { <ide> const cwd = process.cwd(); <ide> const extension = process.platform === 'win32' ? '.cmd' : ''; <del> const result = spawnSync('yarn' + extension, ['test', testFile], { <add> const command = process.env.npm_lifecycle_event; <add> if (!command.startsWith('test')) { <add> throw new Error( <add> 'Expected this test to run as a result of one of test commands.', <add> ); <add> } <add> const result = spawnSync('yarn' + extension, [command, testFile], { <ide> cwd, <ide> env: Object.assign({}, process.env, { <ide> REACT_CLASS_EQUIVALENCE_TEST: 'true',
1
Text
Text
remove leftover ubuntu 15.04 from install docs
1ca064cb62a88366bc13af67a112aff8992b6b68
<ide><path>docs/installation/linux/ubuntulinux.md <ide> packages from the new repository: <ide> ### Prerequisites by Ubuntu Version <ide> <ide> - Ubuntu Wily 15.10 <del>- Ubuntu Vivid 15.04 <ide> - Ubuntu Trusty 14.04 (LTS) <ide> <del>For Ubuntu Trusty, Vivid, and Wily, it's recommended to install the <add>For Ubuntu Trusty and Wily, it's recommended to install the <ide> `linux-image-extra` kernel package. The `linux-image-extra` package <ide> allows you use the `aufs` storage driver. <ide>
1
Go
Go
clean some function in docker_utils_test.go
10e171cd9463ca0bfda4556b3eb04d9f89d1bbbf
<ide><path>integration-cli/docker_api_containers_test.go <ide> import ( <ide> mounttypes "github.com/docker/docker/api/types/mount" <ide> networktypes "github.com/docker/docker/api/types/network" <ide> "github.com/docker/docker/integration-cli/checker" <add> "github.com/docker/docker/integration-cli/cli" <ide> "github.com/docker/docker/integration-cli/cli/build" <ide> "github.com/docker/docker/integration-cli/request" <ide> "github.com/docker/docker/pkg/ioutils" <ide> func (s *DockerSuite) TestGetStoppedContainerStats(c *check.C) { <ide> func (s *DockerSuite) TestContainerAPIPause(c *check.C) { <ide> // Problematic on Windows as Windows does not support pause <ide> testRequires(c, DaemonIsLinux) <del> defer unpauseAllContainers(c) <del> out, _ := dockerCmd(c, "run", "-d", "busybox", "sleep", "30") <add> <add> getPaused := func(c *check.C) []string { <add> return strings.Fields(cli.DockerCmd(c, "ps", "-f", "status=paused", "-q", "-a").Combined()) <add> } <add> <add> out := cli.DockerCmd(c, "run", "-d", "busybox", "sleep", "30").Combined() <ide> ContainerID := strings.TrimSpace(out) <ide> <del> status, _, err := request.SockRequest("POST", "/containers/"+ContainerID+"/pause", nil, daemonHost()) <add> resp, _, err := request.Post("/containers/" + ContainerID + "/pause") <ide> c.Assert(err, checker.IsNil) <del> c.Assert(status, checker.Equals, http.StatusNoContent) <add> c.Assert(resp.StatusCode, checker.Equals, http.StatusNoContent) <ide> <del> pausedContainers := getPausedContainers(c) <add> pausedContainers := getPaused(c) <ide> <ide> if len(pausedContainers) != 1 || stringid.TruncateID(ContainerID) != pausedContainers[0] { <ide> c.Fatalf("there should be one paused container and not %d", len(pausedContainers)) <ide> } <ide> <del> status, _, err = request.SockRequest("POST", "/containers/"+ContainerID+"/unpause", nil, daemonHost()) <add> resp, _, err = request.Post("/containers/" + ContainerID + "/unpause") <ide> c.Assert(err, checker.IsNil) <del> c.Assert(status, checker.Equals, http.StatusNoContent) <add> c.Assert(resp.StatusCode, checker.Equals, http.StatusNoContent) <ide> <del> pausedContainers = getPausedContainers(c) <add> pausedContainers = getPaused(c) <ide> c.Assert(pausedContainers, checker.HasLen, 0, check.Commentf("There should be no paused container.")) <ide> } <ide> <ide> func (s *DockerSuite) TestPutContainerArchiveErrSymlinkInVolumeToReadOnlyRootfs( <ide> readOnly: true, <ide> volumes: defaultVolumes(testVol), // Our bind mount is at /vol2 <ide> }) <del> defer deleteContainer(cID) <ide> <ide> // Attempt to extract to a symlink in the volume which points to a <ide> // directory outside the volume. This should cause an error because the <ide><path>integration-cli/docker_cli_attach_test.go <ide> func (s *DockerSuite) TestAttachDisconnect(c *check.C) { <ide> <ide> func (s *DockerSuite) TestAttachPausedContainer(c *check.C) { <ide> testRequires(c, IsPausable) <del> defer unpauseAllContainers(c) <ide> runSleepingContainer(c, "-d", "--name=test") <ide> dockerCmd(c, "pause", "test") <ide> <ide><path>integration-cli/docker_cli_by_digest_test.go <ide> import ( <ide> "github.com/docker/distribution/manifest/schema2" <ide> "github.com/docker/docker/api/types" <ide> "github.com/docker/docker/integration-cli/checker" <add> "github.com/docker/docker/integration-cli/cli" <ide> "github.com/docker/docker/integration-cli/cli/build" <ide> "github.com/docker/docker/pkg/stringutils" <ide> "github.com/go-check/check" <ide> func setupImageWithTag(c *check.C, tag string) (digest.Digest, error) { <ide> // new file is committed because this layer is used for detecting malicious <ide> // changes. if this was committed as empty layer it would be skipped on pull <ide> // and malicious changes would never be detected. <del> dockerCmd(c, "run", "-e", "digest=1", "--name", containerName, "busybox", "touch", "anewfile") <add> cli.DockerCmd(c, "run", "-e", "digest=1", "--name", containerName, "busybox", "touch", "anewfile") <ide> <ide> // tag the image to upload it to the private registry <ide> repoAndTag := repoName + ":" + tag <del> out, _, err := dockerCmdWithError("commit", containerName, repoAndTag) <del> c.Assert(err, checker.IsNil, check.Commentf("image tagging failed: %s", out)) <add> cli.DockerCmd(c, "commit", containerName, repoAndTag) <ide> <ide> // delete the container as we don't need it any more <del> err = deleteContainer(containerName) <del> c.Assert(err, checker.IsNil) <add> cli.DockerCmd(c, "rm", "-fv", containerName) <ide> <ide> // push the image <del> out, _, err = dockerCmdWithError("push", repoAndTag) <del> c.Assert(err, checker.IsNil, check.Commentf("pushing the image to the private registry has failed: %s", out)) <add> out := cli.DockerCmd(c, "push", repoAndTag).Combined() <ide> <ide> // delete our local repo that we previously tagged <del> rmiout, _, err := dockerCmdWithError("rmi", repoAndTag) <del> c.Assert(err, checker.IsNil, check.Commentf("error deleting images prior to real test: %s", rmiout)) <add> cli.DockerCmd(c, "rmi", repoAndTag) <ide> <ide> matches := pushDigestRegex.FindStringSubmatch(out) <ide> c.Assert(matches, checker.HasLen, 2, check.Commentf("unable to parse digest from push output: %s", out)) <ide><path>integration-cli/docker_cli_commit_test.go <ide> func (s *DockerSuite) TestCommitWithoutPause(c *check.C) { <ide> //test commit a paused container should not unpause it after commit <ide> func (s *DockerSuite) TestCommitPausedContainer(c *check.C) { <ide> testRequires(c, DaemonIsLinux) <del> defer unpauseAllContainers(c) <ide> out, _ := dockerCmd(c, "run", "-i", "-d", "busybox") <ide> <ide> cleanedContainerID := strings.TrimSpace(out) <ide><path>integration-cli/docker_cli_exec_test.go <ide> import ( <ide> "github.com/docker/docker/integration-cli/request" <ide> icmd "github.com/docker/docker/pkg/testutil/cmd" <ide> "github.com/go-check/check" <add> "github.com/docker/docker/integration-cli/cli" <ide> ) <ide> <ide> func (s *DockerSuite) TestExec(c *check.C) { <ide> func (s *DockerSuite) TestExecExitStatus(c *check.C) { <ide> <ide> func (s *DockerSuite) TestExecPausedContainer(c *check.C) { <ide> testRequires(c, IsPausable) <del> defer unpauseAllContainers(c) <ide> <ide> out, _ := runSleepingContainer(c, "-d", "--name", "testing") <ide> ContainerID := strings.TrimSpace(out) <ide> func (s *DockerSuite) TestRunMutableNetworkFiles(c *check.C) { <ide> // Not applicable on Windows to Windows CI. <ide> testRequires(c, SameHostDaemon, DaemonIsLinux) <ide> for _, fn := range []string{"resolv.conf", "hosts"} { <del> deleteAllContainers(c) <add> containers := cli.DockerCmd(c, "ps", "-q", "-a").Combined() <add> if containers != "" { <add> cli.DockerCmd(c, append([]string{"rm", "-fv"}, strings.Split(strings.TrimSpace(containers), "\n")...)...) <add> } <ide> <ide> content := runCommandAndReadContainerFile(c, fn, dockerBinary, "run", "-d", "--name", "c1", "busybox", "sh", "-c", fmt.Sprintf("echo success >/etc/%s && top", fn)) <ide> <ide><path>integration-cli/docker_cli_inspect_test.go <ide> func (s *DockerSuite) TestInspectDefault(c *check.C) { <ide> } <ide> <ide> func (s *DockerSuite) TestInspectStatus(c *check.C) { <del> if testEnv.DaemonPlatform() != "windows" { <del> defer unpauseAllContainers(c) <del> } <ide> out, _ := runSleepingContainer(c, "-d") <ide> out = strings.TrimSpace(out) <ide> <ide><path>integration-cli/docker_cli_pause_test.go <ide> import ( <ide> "strings" <ide> <ide> "github.com/docker/docker/integration-cli/checker" <add> "github.com/docker/docker/integration-cli/cli" <ide> "github.com/go-check/check" <ide> ) <ide> <ide> func (s *DockerSuite) TestPause(c *check.C) { <ide> testRequires(c, IsPausable) <del> defer unpauseAllContainers(c) <ide> <ide> name := "testeventpause" <ide> runSleepingContainer(c, "-d", "--name", name) <ide> <del> dockerCmd(c, "pause", name) <del> pausedContainers := getPausedContainers(c) <add> cli.DockerCmd(c, "pause", name) <add> pausedContainers := strings.Fields( <add> cli.DockerCmd(c, "ps", "-f", "status=paused", "-q", "-a").Combined(), <add> ) <ide> c.Assert(len(pausedContainers), checker.Equals, 1) <ide> <del> dockerCmd(c, "unpause", name) <add> cli.DockerCmd(c, "unpause", name) <ide> <del> out, _ := dockerCmd(c, "events", "--since=0", "--until", daemonUnixTime(c)) <add> out := cli.DockerCmd(c, "events", "--since=0", "--until", daemonUnixTime(c)).Combined() <ide> events := strings.Split(strings.TrimSpace(out), "\n") <ide> actions := eventActionsByIDAndType(c, events, name, "container") <ide> <ide> func (s *DockerSuite) TestPause(c *check.C) { <ide> <ide> func (s *DockerSuite) TestPauseMultipleContainers(c *check.C) { <ide> testRequires(c, IsPausable) <del> defer unpauseAllContainers(c) <ide> <ide> containers := []string{ <ide> "testpausewithmorecontainers1", <ide> func (s *DockerSuite) TestPauseMultipleContainers(c *check.C) { <ide> for _, name := range containers { <ide> runSleepingContainer(c, "-d", "--name", name) <ide> } <del> dockerCmd(c, append([]string{"pause"}, containers...)...) <del> pausedContainers := getPausedContainers(c) <add> cli.DockerCmd(c, append([]string{"pause"}, containers...)...) <add> pausedContainers := strings.Fields( <add> cli.DockerCmd(c, "ps", "-f", "status=paused", "-q", "-a").Combined(), <add> ) <ide> c.Assert(len(pausedContainers), checker.Equals, len(containers)) <ide> <del> dockerCmd(c, append([]string{"unpause"}, containers...)...) <add> cli.DockerCmd(c, append([]string{"unpause"}, containers...)...) <ide> <del> out, _ := dockerCmd(c, "events", "--since=0", "--until", daemonUnixTime(c)) <add> out := cli.DockerCmd(c, "events", "--since=0", "--until", daemonUnixTime(c)).Combined() <ide> events := strings.Split(strings.TrimSpace(out), "\n") <ide> <ide> for _, name := range containers { <ide><path>integration-cli/docker_cli_run_test.go <ide> func (s *DockerSuite) TestRunDeallocatePortOnMissingIptablesRule(c *check.C) { <ide> // TODO Windows. Network settings are not propagated back to inspect. <ide> testRequires(c, SameHostDaemon, DaemonIsLinux) <ide> <del> out, _ := dockerCmd(c, "run", "-d", "-p", "23:23", "busybox", "top") <add> out := cli.DockerCmd(c, "run", "-d", "-p", "23:23", "busybox", "top").Combined() <ide> <ide> id := strings.TrimSpace(out) <ide> ip := inspectField(c, id, "NetworkSettings.Networks.bridge.IPAddress") <ide> icmd.RunCommand("iptables", "-D", "DOCKER", "-d", fmt.Sprintf("%s/32", ip), <ide> "!", "-i", "docker0", "-o", "docker0", "-p", "tcp", "-m", "tcp", "--dport", "23", "-j", "ACCEPT").Assert(c, icmd.Success) <ide> <del> if err := deleteContainer(id); err != nil { <del> c.Fatal(err) <del> } <add> cli.DockerCmd(c, "rm", "-fv", id) <ide> <del> dockerCmd(c, "run", "-d", "-p", "23:23", "busybox", "top") <add> cli.DockerCmd(c, "run", "-d", "-p", "23:23", "busybox", "top") <ide> } <ide> <ide> func (s *DockerSuite) TestRunPortInUse(c *check.C) { <ide> func (s *DockerSuite) TestRunVolumesFromRestartAfterRemoved(c *check.C) { <ide> // run container with --rm should remove container if exit code != 0 <ide> func (s *DockerSuite) TestRunContainerWithRmFlagExitCodeNotEqualToZero(c *check.C) { <ide> name := "flowers" <del> out, _, err := dockerCmdWithError("run", "--name", name, "--rm", "busybox", "ls", "/notexists") <del> if err == nil { <del> c.Fatal("Expected docker run to fail", out, err) <del> } <add> cli.Docker(cli.Args("run", "--name", name, "--rm", "busybox", "ls", "/notexists")).Assert(c, icmd.Expected{ <add> ExitCode: 1, <add> }) <ide> <del> out = getAllContainers(c) <add> out := cli.DockerCmd(c, "ps", "-q", "-a").Combined() <ide> if out != "" { <ide> c.Fatal("Expected not to have containers", out) <ide> } <ide> } <ide> <ide> func (s *DockerSuite) TestRunContainerWithRmFlagCannotStartContainer(c *check.C) { <ide> name := "sparkles" <del> out, _, err := dockerCmdWithError("run", "--name", name, "--rm", "busybox", "commandNotFound") <del> if err == nil { <del> c.Fatal("Expected docker run to fail", out, err) <del> } <del> <del> out = getAllContainers(c) <add> cli.Docker(cli.Args("run", "--name", name, "--rm", "busybox", "commandNotFound")).Assert(c, icmd.Expected{ <add> ExitCode: 127, <add> }) <add> out := cli.DockerCmd(c, "ps", "-q", "-a").Combined() <ide> if out != "" { <ide> c.Fatal("Expected not to have containers", out) <ide> } <ide><path>integration-cli/docker_cli_start_test.go <ide> func (s *DockerSuite) TestStartRecordError(c *check.C) { <ide> func (s *DockerSuite) TestStartPausedContainer(c *check.C) { <ide> // Windows does not support pausing containers <ide> testRequires(c, IsPausable) <del> defer unpauseAllContainers(c) <ide> <ide> runSleepingContainer(c, "-d", "--name", "testing") <ide> <ide><path>integration-cli/docker_utils_test.go <ide> func daemonHost() string { <ide> return request.DaemonHost() <ide> } <ide> <del>// FIXME(vdemeester) move this away are remove ignoreNoSuchContainer bool <del>func deleteContainer(container ...string) error { <del> return icmd.RunCommand(dockerBinary, append([]string{"rm", "-fv"}, container...)...).Compare(icmd.Success) <del>} <del> <del>func getAllContainers(c *check.C) string { <del> result := icmd.RunCommand(dockerBinary, "ps", "-q", "-a") <del> result.Assert(c, icmd.Success) <del> return result.Combined() <del>} <del> <del>// Deprecated <del>func deleteAllContainers(c *check.C) { <del> containers := getAllContainers(c) <del> if containers != "" { <del> err := deleteContainer(strings.Split(strings.TrimSpace(containers), "\n")...) <del> c.Assert(err, checker.IsNil) <del> } <del>} <del> <del>func getPausedContainers(c *check.C) []string { <del> result := icmd.RunCommand(dockerBinary, "ps", "-f", "status=paused", "-q", "-a") <del> result.Assert(c, icmd.Success) <del> return strings.Fields(result.Combined()) <del>} <del> <del>func unpauseContainer(c *check.C, container string) { <del> dockerCmd(c, "unpause", container) <del>} <del> <del>// Deprecated <del>func unpauseAllContainers(c *check.C) { <del> containers := getPausedContainers(c) <del> for _, value := range containers { <del> unpauseContainer(c, value) <del> } <del>} <del> <ide> func deleteImages(images ...string) error { <ide> args := []string{dockerBinary, "rmi", "-f"} <ide> return icmd.RunCmd(icmd.Cmd{Command: append(args, images...)}).Error
10
Go
Go
fix windows rxreservednames
502b35c8f6e3312c2f5a90cda4add6cc5f31a0f4
<ide><path>volume/mounts/windows_parser.go <ide> const ( <ide> rxName = `[^\\/:*?"<>|\r\n]+` <ide> <ide> // RXReservedNames are reserved names not possible on Windows <del> rxReservedNames = `(con)|(prn)|(nul)|(aux)|(com[1-9])|(lpt[1-9])` <add> rxReservedNames = `(con|prn|nul|aux|com[1-9]|lpt[1-9])` <ide> <ide> // rxPipe is a named path pipe (starts with `\\.\pipe\`, possibly with / instead of \) <ide> rxPipe = `[/\\]{2}.[/\\]pipe[/\\][^:*?"<>|\r\n]+` <ide><path>volume/mounts/windows_parser_test.go <ide> func TestWindowsParseMountRaw(t *testing.T) { <ide> `c:\program files:d:\s p a c e i n h o s t d i r`, <ide> `0123456789name:d:`, <ide> `MiXeDcAsEnAmE:d:`, <add> `test-aux-volume:d:`, // includes reserved word, but is not one itself <ide> `name:D:`, <ide> `name:D::rW`, <ide> `name:D::RW`,
2
Ruby
Ruby
check both gcc's
11e779d917808501cedb62a45a23c33eb068de90
<ide><path>Library/Homebrew/brew_doctor.rb <ide> def brew_doctor <ide> <ide> check_for_stray_dylibs <ide> <del> if gcc_build < HOMEBREW_RECOMMENDED_GCC <del> puts "Your GCC version is older than the recommended version. It may be advisable" <add> gcc_42 = gcc_42_build <add> gcc_40 = gcc_40_build <add> <add> if gcc_42 < RECOMMENDED_GCC_42 <add> puts "Your gcc 4.2.x version is older than the recommended version. It may be advisable" <add> puts "to upgrade to the latest release of Xcode." <add> puts <add> end <add> <add> if gcc_40 < RECOMMENDED_GCC_40 <add> puts "Your gcc 4.0.x version is older than the recommended version. It may be advisable" <ide> puts "to upgrade to the latest release of Xcode." <ide> puts <ide> end
1
Go
Go
remove unneeded platform check for ipvlan tests
1e4bd2623a37b8083a7c5f8a93068be2c63f491c
<ide><path>integration/network/ipvlan/ipvlan_test.go <ide> import ( <ide> <ide> func TestDockerNetworkIpvlanPersistance(t *testing.T) { <ide> // verify the driver automatically provisions the 802.1q link (di-dummy0.70) <del> skip.If(t, testEnv.DaemonInfo.OSType == "windows") <ide> skip.If(t, testEnv.IsRemoteDaemon) <ide> skip.If(t, !ipvlanKernelSupport(t), "Kernel doesn't support ipvlan") <ide> <ide> func TestDockerNetworkIpvlanPersistance(t *testing.T) { <ide> } <ide> <ide> func TestDockerNetworkIpvlan(t *testing.T) { <del> skip.If(t, testEnv.DaemonInfo.OSType == "windows") <ide> skip.If(t, testEnv.IsRemoteDaemon) <ide> skip.If(t, !ipvlanKernelSupport(t), "Kernel doesn't support ipvlan") <ide>
1
Text
Text
add text "learn more about cs"
7d3219cb3075085e5e3966fe4e6fd74604693a92
<ide><path>client/src/pages/guide/english/computer-science/index.md <ide> Computer science is categorized into several fields. The following are among the <ide> - Operating Systems <ide> - Database Systems <ide> <del># Want to learn more? <del> <add>##More Information <add>* [Visualization of Data Structures](http://www.cs.usfca.edu/~galles/JavascriptVisual/Algorithms.html) <ide> * [Khan Academy](https://www.khanacademy.org/computing/computer-science) : A deep dive into algorithms, cryptography, introductory computing, and much more. <ide> * [CS50](https://cs50.harvard.edu) : A free, introduction to computer science course, taught by David J. Malan and staff at Harvard & Yale Universities. <ide> * [Visualization of Data Structures](http://www.cs.usfca.edu/~galles/JavascriptVisual/Algorithms.html)
1
Ruby
Ruby
put the assertion arguments in the right order
3b1abcc2225426d0b3245bbf8b9777b44716f9f7
<ide><path>activesupport/test/core_ext/object/deep_dup_test.rb <ide> def test_object_deep_dup <ide> def test_deep_dup_with_hash_class_key <ide> hash = { Fixnum => 1 } <ide> dup = hash.deep_dup <del> assert_equal dup.keys.length, 1 <add> assert_equal 1, dup.keys.length <ide> end <ide> <ide> end
1
PHP
PHP
add tests for type() and refactor tests
bfb6b9d82be5d8ae0c1c5b5877a724cacc3eb5cf
<ide><path>src/View/Form/EntityContext.php <ide> use Cake\Network\Request; <ide> use Cake\ORM\Entity; <ide> use Cake\ORM\TableRegistry; <del>use Cake\Utility\Inflector; <ide> use Cake\Validation\Validator; <ide> use Traversable; <ide> <ide><path>tests/TestCase/View/Form/EntityContextTest.php <ide> public function testValAssociated() { <ide> * @return void <ide> */ <ide> public function testIsRequiredStringValidator() { <del> $articles = TableRegistry::get('Articles'); <del> <del> $validator = $articles->validator(); <del> $validator->add('title', 'minlength', [ <del> 'rule' => ['minlength', 10] <del> ]) <del> ->add('body', 'maxlength', [ <del> 'rule' => ['maxlength', 1000] <del> ])->allowEmpty('body'); <add> $this->_setupTables(); <ide> <ide> $context = new EntityContext($this->request, [ <ide> 'entity' => new Entity(), <ide> 'table' => 'Articles', <del> 'validator' => 'default', <add> 'validator' => 'create', <ide> ]); <ide> <ide> $this->assertTrue($context->isRequired('Articles.title')); <ide> public function testIsRequiredStringValidator() { <ide> * @return void <ide> */ <ide> public function testIsRequiredAssociatedHasMany() { <del> $articles = TableRegistry::get('Articles'); <del> $articles->hasMany('Comments'); <del> $comments = TableRegistry::get('Comments'); <del> <del> $validator = $articles->validator(); <del> $validator->add('title', 'minlength', [ <del> 'rule' => ['minlength', 10] <del> ]); <add> $this->_setupTables(); <ide> <add> $comments = TableRegistry::get('Comments'); <ide> $validator = $comments->validator(); <del> $validator->add('comment', 'length', [ <del> 'rule' => ['minlength', 10] <add> $validator->add('user_id', 'number', [ <add> 'rule' => 'numeric', <ide> ]); <ide> <ide> $row = new Entity([ <ide> public function testIsRequiredAssociatedHasMany() { <ide> 'validator' => 'default', <ide> ]); <ide> <del> // $this->assertTrue($context->isRequired('Articles.title')); <del> // $this->assertFalse($context->isRequired('Articles.body')); <del> <del> $this->assertTrue($context->isRequired('comments.0.comment')); <del> $this->assertTrue($context->isRequired('Articles.comments.0.comment')); <add> $this->assertTrue($context->isRequired('comments.0.user_id')); <add> $this->assertTrue($context->isRequired('Articles.comments.0.user_id')); <ide> <ide> $this->assertFalse($context->isRequired('comments.0.other')); <ide> $this->assertFalse($context->isRequired('Articles.comments.0.other')); <ide> public function testIsRequiredAssociatedHasMany() { <ide> * @return void <ide> */ <ide> public function testIsRequiredAssociatedValidator() { <del> $articles = TableRegistry::get('Articles'); <del> $articles->hasMany('Comments'); <del> $comments = TableRegistry::get('Comments'); <del> <del> $validator = new Validator(); <del> $validator->add('title', 'minlength', [ <del> 'rule' => ['minlength', 10] <del> ]); <del> $articles->validator('create', $validator); <del> <del> $validator = new Validator(); <del> $validator->add('comment', 'length', [ <del> 'rule' => ['minlength', 10] <del> ]); <del> $comments->validator('custom', $validator); <add> $this->_setupTables(); <ide> <ide> $row = new Entity([ <ide> 'title' => 'My title', <ide> public function testIsRequiredAssociatedValidator() { <ide> * @return void <ide> */ <ide> public function testIsRequiredAssociatedBelongsTo() { <del> $articles = TableRegistry::get('Articles'); <del> $articles->belongsTo('Users'); <del> $users = TableRegistry::get('Users'); <del> <del> $validator = new Validator(); <del> $validator->add('title', 'minlength', [ <del> 'rule' => ['minlength', 10] <del> ]); <del> $articles->validator('create', $validator); <del> <del> $validator = new Validator(); <del> $validator->add('username', 'length', [ <del> 'rule' => ['minlength', 10] <del> ]); <del> $users->validator('custom', $validator); <add> $this->_setupTables(); <ide> <ide> $row = new Entity([ <ide> 'title' => 'My title', <ide> public function testIsRequiredAssociatedBelongsTo() { <ide> * @return void <ide> */ <ide> public function testType() { <del> $articles = TableRegistry::get('Articles'); <del> $articles->schema([ <del> 'title' => ['type' => 'string'], <del> 'body' => ['type' => 'text'], <del> 'user_id' => ['type' => 'integer'] <del> ]); <add> $this->_setupTables(); <ide> <ide> $row = new Entity([ <ide> 'title' => 'My title', <ide> public function testType() { <ide> * @return void <ide> */ <ide> public function testTypeAssociated() { <del> $articles = TableRegistry::get('Articles'); <del> $articles->belongsTo('Users'); <del> $users = TableRegistry::get('Users'); <del> <del> $articles->schema([ <del> 'title' => ['type' => 'string'], <del> 'body' => ['type' => 'text'] <del> ]); <del> $users->schema([ <del> 'username' => ['type' => 'string'], <del> 'bio' => ['type' => 'text'] <del> ]); <add> $this->_setupTables(); <ide> <ide> $row = new Entity([ <ide> 'title' => 'My title', <ide> public function testTypeAssociated() { <ide> $this->assertNull($context->type('user.nope')); <ide> } <ide> <add>/** <add> * Test attributes for fields. <add> * <add> * @return void <add> */ <add> public function testAttributes() { <add> $this->_setupTables(); <add> <add> $row = new Entity([ <add> 'title' => 'My title', <add> 'user' => new Entity(['username' => 'Mark']), <add> ]); <add> $context = new EntityContext($this->request, [ <add> 'entity' => $row, <add> 'table' => 'Articles', <add> ]); <add> } <add> <add>/** <add> * Setup tables for tests. <add> * <add> * @return void <add> */ <add> protected function _setupTables() { <add> $articles = TableRegistry::get('Articles'); <add> $articles->belongsTo('Users'); <add> $articles->hasMany('Comments'); <add> <add> $comments = TableRegistry::get('Comments'); <add> $users = TableRegistry::get('Users'); <add> <add> $articles->schema([ <add> 'id' => ['type' => 'integer', 'length' => 11, 'null' => false], <add> 'title' => ['type' => 'string', 'length' => 255], <add> 'user_id' => ['type' => 'integer', 'length' => 11, 'null' => false], <add> 'body' => ['type' => 'text'] <add> ]); <add> $users->schema([ <add> 'id' => ['type' => 'integer', 'length' => 11], <add> 'username' => ['type' => 'string', 'length' => 255], <add> 'bio' => ['type' => 'text'] <add> ]); <add> <add> $validator = new Validator(); <add> $validator->add('title', 'minlength', [ <add> 'rule' => ['minlength', 10] <add> ]) <add> ->add('body', 'maxlength', [ <add> 'rule' => ['maxlength', 1000] <add> ])->allowEmpty('body'); <add> $articles->validator('create', $validator); <add> <add> $validator = new Validator(); <add> $validator->add('username', 'length', [ <add> 'rule' => ['minlength', 10] <add> ]); <add> $users->validator('custom', $validator); <add> <add> $validator = new Validator(); <add> $validator->add('comment', 'length', [ <add> 'rule' => ['minlength', 10] <add> ]); <add> $comments->validator('custom', $validator); <add> } <add> <ide> }
2
Text
Text
remove outdated note from with-jest example
e463c2a1bb9f483ddb3658ca99b386f1ee100014
<ide><path>examples/with-jest/README.md <ide> yarn test <ide> This example features: <ide> <ide> * An app with jest tests <del> <del>> A very important part of this example is the `.babelrc` file which configures the `test` environment to use `babel-preset-env` and configures it to transpile modules to `commonjs`). [Learn more](https://github.com/zeit/next.js/issues/2895).
1
Javascript
Javascript
call chai after load in plugin
551cb987dd9bbd98b51b8c34728fd05f2ee80be3
<ide><path>client/plugin.js <ide> function runHidden(code) { <ide> var dump = null; <ide> var onoffline = null; <ide> var ononline = null; <del> <del> var expect = chai.expect; <del> var assert = chai.assert; <ide> /* eslint-enable */ <ide> <ide> var error = null; <ide> function runHidden(code) { <ide> 'https://cdnjs.cloudflare.com/ajax/libs/chai/2.2.0/chai.min.js' <ide> ); <ide> <add> <add> /* eslint-disable*/ <add> var expect = chai.expect; <add> var assert = chai.assert; <add> /* eslint-enable */ <add> <ide> if (error) { <ide> return error; <ide> }
1
Python
Python
add doctests to networking_flow/minimum_cut.py
dc2b575274ad4920a0e3f2303a80796daafce84f
<ide><path>networking_flow/minimum_cut.py <ide> # Minimum cut on Ford_Fulkerson algorithm. <del> <add> <add>test_graph = [ <add> [0, 16, 13, 0, 0, 0], <add> [0, 0, 10, 12, 0, 0], <add> [0, 4, 0, 0, 14, 0], <add> [0, 0, 9, 0, 0, 20], <add> [0, 0, 0, 7, 0, 4], <add> [0, 0, 0, 0, 0, 0], <add>] <add> <add> <ide> def BFS(graph, s, t, parent): <ide> # Return True if there is node that has not iterated. <del> visited = [False]*len(graph) <del> queue=[] <del> queue.append(s) <add> visited = [False] * len(graph) <add> queue = [s] <ide> visited[s] = True <del> <add> <ide> while queue: <ide> u = queue.pop(0) <ide> for ind in range(len(graph[u])): <ide> def BFS(graph, s, t, parent): <ide> parent[ind] = u <ide> <ide> return True if visited[t] else False <del> <add> <add> <ide> def mincut(graph, source, sink): <del> # This array is filled by BFS and to store path <del> parent = [-1]*(len(graph)) <del> max_flow = 0 <add> """This array is filled by BFS and to store path <add> >>> mincut(test_graph, source=0, sink=5) <add> [(1, 3), (4, 3), (4, 5)] <add> """ <add> parent = [-1] * (len(graph)) <add> max_flow = 0 <ide> res = [] <del> temp = [i[:] for i in graph] # Record orignial cut, copy. <del> while BFS(graph, source, sink, parent) : <add> temp = [i[:] for i in graph] # Record orignial cut, copy. <add> while BFS(graph, source, sink, parent): <ide> path_flow = float("Inf") <ide> s = sink <ide> <del> while(s != source): <add> while s != source: <ide> # Find the minimum value in select path <del> path_flow = min (path_flow, graph[parent[s]][s]) <add> path_flow = min(path_flow, graph[parent[s]][s]) <ide> s = parent[s] <ide> <del> max_flow += path_flow <add> max_flow += path_flow <ide> v = sink <del> <del> while(v != source): <add> <add> while v != source: <ide> u = parent[v] <ide> graph[u][v] -= path_flow <ide> graph[v][u] += path_flow <ide> def mincut(graph, source, sink): <ide> for i in range(len(graph)): <ide> for j in range(len(graph[0])): <ide> if graph[i][j] == 0 and temp[i][j] > 0: <del> res.append((i,j)) <add> res.append((i, j)) <ide> <ide> return res <ide> <del>graph = [[0, 16, 13, 0, 0, 0], <del> [0, 0, 10 ,12, 0, 0], <del> [0, 4, 0, 0, 14, 0], <del> [0, 0, 9, 0, 0, 20], <del> [0, 0, 0, 7, 0, 4], <del> [0, 0, 0, 0, 0, 0]] <ide> <del>source, sink = 0, 5 <del>print(mincut(graph, source, sink)) <ide>\ No newline at end of file <add>if __name__ == "__main__": <add> print(mincut(test_graph, source=0, sink=5))
1
Javascript
Javascript
add tests for buffer.tojson
f3dc6a37f04c50485213ec972edd202585d30525
<ide><path>test/parallel/test-buffer-alloc.js <ide> assert.strictEqual(Buffer.from('13.37').length, 5); <ide> // issue GH-3416 <ide> Buffer.from(Buffer.allocUnsafe(0), 0, 0); <ide> <del>// GH-5110 <del>{ <del> const buffer = Buffer.from('test'); <del> const string = JSON.stringify(buffer); <del> <del> assert.strictEqual(string, '{"type":"Buffer","data":[116,101,115,116]}'); <del> <del> assert.deepStrictEqual(buffer, JSON.parse(string, (key, value) => { <del> return value && value.type === 'Buffer' ? <del> Buffer.from(value.data) : <del> value; <del> })); <del>} <del> <del>// issue GH-7849 <del>{ <del> const buf = Buffer.from('test'); <del> const json = JSON.stringify(buf); <del> const obj = JSON.parse(json); <del> const copy = Buffer.from(obj); <del> <del> assert(buf.equals(copy)); <del>} <del> <ide> // issue GH-5587 <ide> assert.throws(() => Buffer.alloc(8).writeFloatLE(0, 5), RangeError); <ide> assert.throws(() => Buffer.alloc(16).writeDoubleLE(0, 9), RangeError); <ide><path>test/parallel/test-buffer-tojson.js <add>'use strict'; <add> <add>require('../common'); <add>const assert = require('assert'); <add>const Buffer = require('buffer').Buffer; <add> <add>{ <add> assert.strictEqual(JSON.stringify(Buffer.alloc(0)), <add> '{"type":"Buffer","data":[]}'); <add> assert.strictEqual(JSON.stringify(Buffer.from([1, 2, 3, 4])), <add> '{"type":"Buffer","data":[1,2,3,4]}'); <add>} <add> <add>// issue GH-7849 <add>{ <add> const buf = Buffer.from('test'); <add> const json = JSON.stringify(buf); <add> const obj = JSON.parse(json); <add> const copy = Buffer.from(obj); <add> <add> assert.deepStrictEqual(buf, copy); <add>} <add> <add>// GH-5110 <add>{ <add> const buffer = Buffer.from('test'); <add> const string = JSON.stringify(buffer); <add> <add> assert.strictEqual(string, '{"type":"Buffer","data":[116,101,115,116]}'); <add> <add> function receiver(key, value) { <add> return value && value.type === 'Buffer' ? Buffer.from(value.data) : value; <add> } <add> <add> assert.deepStrictEqual(buffer, JSON.parse(string, receiver)); <add>}
2
Javascript
Javascript
fix nvc for rctmap
4ac209ca1d05beda473362ef183aebc8dce6374a
<ide><path>Libraries/ReactNative/getNativeComponentAttributes.js <ide> function getDifferForType( <ide> // Android Types <ide> case 'Point': <ide> return pointsDiffer; <add> case 'EdgeInsets': <add> return insetsDiffer; <ide> } <ide> return null; <ide> }
1
Text
Text
add addon api wg
12e51d56c1007d83c4bc1c1450b5f45837c27164
<ide><path>WORKING_GROUPS.md <ide> Their responsibilities are: <ide> * Maintain and improve the images' documentation. <ide> <ide> <add>### Addon API <add> <add>The Addon API Working Group is responsible for maintaining the NAN project and <add>corresponding _nan_ package in npm. The NAN project makes available an <add>abstraction layer for native add-on authors for both Node.js and io.js, <add>assisting in the writing of code that is compatible with many actively used <add>versions of Node.js, io.js, V8 and libuv. <add> <add>Their responsibilities are: <add> <add>* Maintaining the [NAN](https://github.com/rvagg/nan) GitHub repository, <add> including code, issues and documentation. <add>* Maintaining the [addon-examples](https://github.com/rvagg/node-addon-examples) <add> GitHub repository, including code, issues and documentation. <add>* Maintaining the C++ Addon API within the io.js project, in subordination to <add> the io.js TC. <add>* Maintaining the Addon documentation within the io.js project, in <add> subordination to the io.js TC. <add>* Maintaining the _nan_ package in npm, releasing new versions as appropriate. <add>* Messaging about the future of the io.js and NAN interface to give the <add> community advance notice of changes. <add> <add>The current members can be found in their <add>[README](https://github.com/rvagg/nan#collaborators). <add> <ide> ## Starting a WG <ide> <ide> A Working Group is established by first defining a charter that can be
1
PHP
PHP
add tokenmismatchexception to the dontreport array
05235ee6bff52926b266ce0a295f3f2fc35451e0
<ide><path>app/Exceptions/Handler.php <ide> namespace App\Exceptions; <ide> <ide> use Exception; <add>use Illuminate\Session\TokenMismatchException; <ide> use Illuminate\Validation\ValidationException; <ide> use Illuminate\Auth\Access\AuthorizationException; <ide> use Illuminate\Database\Eloquent\ModelNotFoundException; <ide> class Handler extends ExceptionHandler <ide> AuthorizationException::class, <ide> HttpException::class, <ide> ModelNotFoundException::class, <add> TokenMismatchException::class, <ide> ValidationException::class, <ide> ]; <ide>
1
Javascript
Javascript
make access to sourcecode native extension lazy
c73242938c2b9d45f9da02b201a02f3b5993eaf5
<ide><path>Libraries/Image/resolveAssetSource.js <ide> const AssetSourceResolver = require('AssetSourceResolver'); <ide> import type { ResolvedAssetSource } from 'AssetSourceResolver'; <ide> <ide> let _customSourceTransformer, _serverURL, _scriptURL; <add> <ide> let _sourceCodeScriptURL: ?string; <add>function getSourceCodeScriptURL(): ?string { <add> if (_sourceCodeScriptURL) { <add> return _sourceCodeScriptURL; <add> } <add> <add> let sourceCode = global.nativeExtensions && global.nativeExtensions.SourceCode; <add> if (!sourceCode) { <add> const NativeModules = require('NativeModules'); <add> sourceCode = NativeModules && NativeModules.SourceCode; <add> } <add> _sourceCodeScriptURL = sourceCode.scriptURL; <add> return _sourceCodeScriptURL; <add>} <ide> <ide> function getDevServerURL(): ?string { <ide> if (_serverURL === undefined) { <del> const match = _sourceCodeScriptURL && _sourceCodeScriptURL.match(/^https?:\/\/.*?\//); <add> const sourceCodeScriptURL = getSourceCodeScriptURL(); <add> const match = sourceCodeScriptURL && sourceCodeScriptURL.match(/^https?:\/\/.*?\//); <ide> if (match) { <ide> // jsBundle was loaded from network <ide> _serverURL = match[0]; <ide> function _coerceLocalScriptURL(scriptURL: ?string): ?string { <ide> <ide> function getScriptURL(): ?string { <ide> if (_scriptURL === undefined) { <del> _scriptURL = _coerceLocalScriptURL(_sourceCodeScriptURL); <add> _scriptURL = _coerceLocalScriptURL(getSourceCodeScriptURL()); <ide> } <ide> return _scriptURL; <ide> } <ide> function resolveAssetSource(source: any): ?ResolvedAssetSource { <ide> return resolver.defaultAsset(); <ide> } <ide> <del>let sourceCode = global.nativeExtensions && global.nativeExtensions.SourceCode; <del>if (!sourceCode) { <del> const NativeModules = require('NativeModules'); <del> sourceCode = NativeModules && NativeModules.SourceCode; <del>} <del>_sourceCodeScriptURL = sourceCode && sourceCode.scriptURL; <del> <ide> module.exports = resolveAssetSource; <ide> module.exports.pickScale = AssetSourceResolver.pickScale; <ide> module.exports.setCustomSourceTransformer = setCustomSourceTransformer;
1
Ruby
Ruby
reintroduce cache with tests
f767ac22fa213df754e160c59189d28ed4f95568
<ide><path>activerecord/lib/active_record/type/hash_lookup_type_map.rb <ide> module Type <ide> class HashLookupTypeMap < TypeMap # :nodoc: <ide> delegate :key?, to: :@mapping <ide> <del> def fetch(type, *args, &block) <del> @mapping.fetch(type, block).call(type, *args) <del> end <del> <ide> def alias_type(type, alias_type) <ide> register_type(type) { |_, *args| lookup(alias_type, *args) } <ide> end <add> <add> private <add> <add> def perform_fetch(type, *args, &block) <add> @mapping.fetch(type, block).call(type, *args) <add> end <ide> end <ide> end <ide> end <ide><path>activerecord/lib/active_record/type/type_map.rb <ide> module Type <ide> class TypeMap # :nodoc: <ide> def initialize <ide> @mapping = {} <add> @cache = Hash.new do |h, key| <add> h[key] = {} <add> end <ide> end <ide> <ide> def lookup(lookup_key, *args) <ide> fetch(lookup_key, *args) { default_value } <ide> end <ide> <del> def fetch(lookup_key, *args) <del> matching_pair = @mapping.reverse_each.detect do |key, _| <del> key === lookup_key <del> end <del> <del> if matching_pair <del> matching_pair.last.call(lookup_key, *args) <del> else <del> yield lookup_key, *args <del> end <add> def fetch(lookup_key, *args, &block) <add> @cache[lookup_key][args] ||= perform_fetch(lookup_key, *args, &block) <ide> end <ide> <ide> def register_type(key, value = nil, &block) <ide> raise ::ArgumentError unless value || block <add> @cache.clear <ide> <ide> if block <ide> @mapping[key] = block <ide> def clear <ide> <ide> private <ide> <add> def perform_fetch(lookup_key, *args) <add> matching_pair = @mapping.reverse_each.detect do |key, _| <add> key === lookup_key <add> end <add> <add> if matching_pair <add> matching_pair.last.call(lookup_key, *args) <add> else <add> yield lookup_key, *args <add> end <add> end <add> <ide> def default_value <ide> @default_value ||= Value.new <ide> end <ide><path>activerecord/test/cases/type/type_map_test.rb <ide> def test_fetch_yields_args <ide> assert_equal "foo-1-2-3", mapping.fetch("foo", 1, 2, 3) { |*args| args.join("-") } <ide> assert_equal "bar-1-2-3", mapping.fetch("bar", 1, 2, 3) { |*args| args.join("-") } <ide> end <add> <add> def test_fetch_memoizes <add> mapping = TypeMap.new <add> <add> looked_up = false <add> mapping.register_type(1) do <add> fail if looked_up <add> looked_up = true <add> "string" <add> end <add> <add> assert_equal "string", mapping.fetch(1) <add> assert_equal "string", mapping.fetch(1) <add> end <add> <add> def test_fetch_memoizes_on_args <add> mapping = TypeMap.new <add> mapping.register_type("foo") { |*args| args.join("-") } <add> <add> assert_equal "foo-1-2-3", mapping.fetch("foo", 1, 2, 3) { |*args| args.join("-") } <add> assert_equal "foo-2-3-4", mapping.fetch("foo", 2, 3, 4) { |*args| args.join("-") } <add> end <add> <add> def test_register_clears_cache <add> mapping = TypeMap.new <add> <add> mapping.register_type(1, "string") <add> mapping.lookup(1) <add> mapping.register_type(1, "int") <add> <add> assert_equal "int", mapping.lookup(1) <add> end <ide> end <ide> end <ide> end
3
PHP
PHP
fix docblock cs
378104e1cdf07ad606482f9b12fddcbd9dadbcda
<ide><path>src/Illuminate/Foundation/Auth/ResetsPasswords.php <ide> protected function getEmailSubject() <ide> * <ide> * If no token is present, display the link request form. <ide> * <del> * @param Request $request <add> * @param \Illuminate\Http\Request $request <ide> * @param string|null $token <ide> * @return \Illuminate\Http\Response <ide> */
1
Javascript
Javascript
reverse condition of a ternary for readability
2e5b047f043b945991520bf74ca04c3fa4f08359
<ide><path>src/shared/utils/traverseAllChildren.js <ide> function traverseAllChildrenImpl( <ide> var child; <ide> var nextName; <ide> var subtreeCount = 0; // Count of children found in the current subtree. <del> var nextNamePrefix = nameSoFar !== '' ? nameSoFar + SUBSEPARATOR : SEPARATOR; <add> var nextNamePrefix = nameSoFar === '' ? SEPARATOR : nameSoFar + SUBSEPARATOR; <ide> <ide> if (Array.isArray(children)) { <ide> for (var i = 0; i < children.length; i++) {
1
Javascript
Javascript
consolidate eslint dependencies
4c41fea7a76949bce58adc7ce30ad952e2088401
<ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/agents.js <del>module.exports={A:{A:{J:0.0131217,E:0.00621152,F:0.0376392,G:0.0903341,A:0.0225835,B:0.700089,lB:0.009298},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","lB","J","E","F","G","A","B","","",""],E:"IE",F:{lB:962323200,J:998870400,E:1161129600,F:1237420800,G:1300060800,A:1346716800,B:1381968000}},B:{A:{C:0.008636,K:0.004267,L:0.004318,D:0.008636,M:0.008636,N:0.012954,O:0.038862,P:0,Q:0.004298,R:0.00944,U:0.004043,V:0.008636,W:0.008636,X:0.008636,Y:0.012954,Z:0.004318,a:0.017272,b:0.008636,c:0.017272,S:0.034544,d:0.164084,e:2.75057,H:0.898144},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","C","K","L","D","M","N","O","P","Q","R","U","V","W","X","Y","Z","a","b","c","S","d","e","H","","",""],E:"Edge",F:{C:1438128000,K:1447286400,L:1470096000,D:1491868800,M:1508198400,N:1525046400,O:1542067200,P:1579046400,Q:1581033600,R:1586736000,U:1590019200,V:1594857600,W:1598486400,X:1602201600,Y:1605830400,Z:1611360000,a:1614816000,b:1618358400,c:1622073600,S:1626912000,d:1630627200,e:1632441600,H:1634774400},D:{C:"ms",K:"ms",L:"ms",D:"ms",M:"ms",N:"ms",O:"ms"}},C:{A:{"0":0.004783,"1":0.00487,"2":0.005029,"3":0.0047,"4":0.038862,"5":0.004318,"6":0.004318,"7":0.004525,"8":0.004293,"9":0.008636,mB:0.004318,dB:0.004271,I:0.017272,f:0.004879,J:0.020136,E:0.005725,F:0.004525,G:0.00533,A:0.004283,B:0.004318,C:0.004471,K:0.004486,L:0.00453,D:0.004293,M:0.004417,N:0.004425,O:0.004293,g:0.004443,h:0.004283,i:0.004293,j:0.013698,k:0.004293,l:0.008786,m:0.004318,n:0.004317,o:0.004393,p:0.004418,q:0.008834,r:0.004293,s:0.008928,t:0.004471,u:0.009284,v:0.004707,w:0.009076,x:0.004425,y:0.004783,z:0.004271,AB:0.004538,BB:0.008282,CB:0.004318,DB:0.069088,EB:0.004335,FB:0.008586,GB:0.004318,HB:0.008636,IB:0.004425,JB:0.004318,eB:0.004318,KB:0.008636,fB:0.004318,LB:0.004425,MB:0.008636,T:0.00415,NB:0.004267,OB:0.004318,PB:0.004267,QB:0.008636,RB:0.00415,SB:0.004293,TB:0.004425,UB:0.008636,VB:0.00415,WB:0.00415,XB:0.004318,YB:0.004043,ZB:0.008636,aB:0.142494,P:0.008636,Q:0.008636,R:0.017272,nB:0.008636,U:0.008636,V:0.017272,W:0.008636,X:0.008636,Y:0.008636,Z:0.025908,a:0.025908,b:0.025908,c:0.051816,S:0.75565,d:1.90424,e:0.025908,H:0,gB:0,oB:0.008786,pB:0.00487},B:"moz",C:["mB","dB","oB","pB","I","f","J","E","F","G","A","B","C","K","L","D","M","N","O","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","eB","KB","fB","LB","MB","T","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","P","Q","R","nB","U","V","W","X","Y","Z","a","b","c","S","d","e","H","gB",""],E:"Firefox",F:{"0":1435881600,"1":1439251200,"2":1442880000,"3":1446508800,"4":1450137600,"5":1453852800,"6":1457395200,"7":1461628800,"8":1465257600,"9":1470096000,mB:1161648000,dB:1213660800,oB:1246320000,pB:1264032000,I:1300752000,f:1308614400,J:1313452800,E:1317081600,F:1317081600,G:1320710400,A:1324339200,B:1327968000,C:1331596800,K:1335225600,L:1338854400,D:1342483200,M:1346112000,N:1349740800,O:1353628800,g:1357603200,h:1361232000,i:1364860800,j:1368489600,k:1372118400,l:1375747200,m:1379376000,n:1386633600,o:1391472000,p:1395100800,q:1398729600,r:1402358400,s:1405987200,t:1409616000,u:1413244800,v:1417392000,w:1421107200,x:1424736000,y:1428278400,z:1431475200,AB:1474329600,BB:1479168000,CB:1485216000,DB:1488844800,EB:1492560000,FB:1497312000,GB:1502150400,HB:1506556800,IB:1510617600,JB:1516665600,eB:1520985600,KB:1525824000,fB:1529971200,LB:1536105600,MB:1540252800,T:1544486400,NB:1548720000,OB:1552953600,PB:1558396800,QB:1562630400,RB:1567468800,SB:1571788800,TB:1575331200,UB:1578355200,VB:1581379200,WB:1583798400,XB:1586304000,YB:1588636800,ZB:1591056000,aB:1593475200,P:1595894400,Q:1598313600,R:1600732800,nB:1603152000,U:1605571200,V:1607990400,W:1611619200,X:1614038400,Y:1616457600,Z:1618790400,a:1622505600,b:1626134400,c:1628553600,S:1630972800,d:1633392000,e:1635811200,H:null,gB:null}},D:{A:{"0":0.004464,"1":0.012954,"2":0.0236,"3":0.004293,"4":0.008636,"5":0.004465,"6":0.004642,"7":0.004891,"8":0.012954,"9":0.02159,I:0.004706,f:0.004879,J:0.004879,E:0.005591,F:0.005591,G:0.005591,A:0.004534,B:0.004464,C:0.010424,K:0.0083,L:0.004706,D:0.015087,M:0.004393,N:0.004393,O:0.008652,g:0.004293,h:0.004393,i:0.004317,j:0.008636,k:0.008786,l:0.008636,m:0.004461,n:0.004141,o:0.004326,p:0.0047,q:0.004538,r:0.004293,s:0.008596,t:0.004566,u:0.004318,v:0.008636,w:0.012954,x:0.004335,y:0.004464,z:0.02159,AB:0.177038,BB:0.004293,CB:0.004318,DB:0.004318,EB:0.012954,FB:0.008636,GB:0.008636,HB:0.047498,IB:0.008636,JB:0.008636,eB:0.008636,KB:0.008636,fB:0.060452,LB:0.008636,MB:0.012954,T:0.02159,NB:0.02159,OB:0.02159,PB:0.017272,QB:0.012954,RB:0.06477,SB:0.047498,TB:0.02159,UB:0.047498,VB:0.012954,WB:0.056134,XB:0.077724,YB:0.056134,ZB:0.02159,aB:0.047498,P:0.164084,Q:0.073406,R:0.047498,U:0.077724,V:0.099314,W:0.112268,X:0.10795,Y:0.319532,Z:0.094996,a:0.177038,b:0.116586,c:0.32385,S:0.617474,d:1.66243,e:17.5829,H:4.74116,gB:0.02159,qB:0.012954,rB:0,sB:0},B:"webkit",C:["","","","I","f","J","E","F","G","A","B","C","K","L","D","M","N","O","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","eB","KB","fB","LB","MB","T","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","P","Q","R","U","V","W","X","Y","Z","a","b","c","S","d","e","H","gB","qB","rB","sB"],E:"Chrome",F:{"0":1416268800,"1":1421798400,"2":1425513600,"3":1429401600,"4":1432080000,"5":1437523200,"6":1441152000,"7":1444780800,"8":1449014400,"9":1453248000,I:1264377600,f:1274745600,J:1283385600,E:1287619200,F:1291248000,G:1296777600,A:1299542400,B:1303862400,C:1307404800,K:1312243200,L:1316131200,D:1316131200,M:1319500800,N:1323734400,O:1328659200,g:1332892800,h:1337040000,i:1340668800,j:1343692800,k:1348531200,l:1352246400,m:1357862400,n:1361404800,o:1364428800,p:1369094400,q:1374105600,r:1376956800,s:1384214400,t:1389657600,u:1392940800,v:1397001600,w:1400544000,x:1405468800,y:1409011200,z:1412640000,AB:1456963200,BB:1460592000,CB:1464134400,DB:1469059200,EB:1472601600,FB:1476230400,GB:1480550400,HB:1485302400,IB:1489017600,JB:1492560000,eB:1496707200,KB:1500940800,fB:1504569600,LB:1508198400,MB:1512518400,T:1516752000,NB:1520294400,OB:1523923200,PB:1527552000,QB:1532390400,RB:1536019200,SB:1539648000,TB:1543968000,UB:1548720000,VB:1552348800,WB:1555977600,XB:1559606400,YB:1564444800,ZB:1568073600,aB:1571702400,P:1575936000,Q:1580860800,R:1586304000,U:1589846400,V:1594684800,W:1598313600,X:1601942400,Y:1605571200,Z:1611014400,a:1614556800,b:1618272000,c:1621987200,S:1626739200,d:1630368000,e:1632268800,H:1634601600,gB:1637020800,qB:null,rB:null,sB:null}},E:{A:{I:0,f:0.004293,J:0.004656,E:0.004465,F:0.004043,G:0.004891,A:0.004425,B:0.004318,C:0.008636,K:0.069088,L:0.375666,D:0.90678,tB:0,hB:0.008692,uB:0.012954,vB:0.00456,wB:0.004283,xB:0.025908,iB:0.012954,bB:0.04318,cB:0.077724,yB:0.526796,zB:1.98196,"0B":0,"1B":0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","tB","hB","I","f","uB","J","vB","E","wB","F","G","xB","A","iB","B","bB","C","cB","K","yB","L","zB","D","0B","1B","",""],E:"Safari",F:{tB:1205798400,hB:1226534400,I:1244419200,f:1275868800,uB:1311120000,J:1343174400,vB:1382400000,E:1382400000,wB:1410998400,F:1413417600,G:1443657600,xB:1458518400,A:1474329600,iB:1490572800,B:1505779200,bB:1522281600,C:1537142400,cB:1553472000,K:1568851200,yB:1585008000,L:1600214400,zB:1619395200,D:1632096000,"0B":1635292800,"1B":null}},F:{A:{"0":0.004534,"1":0.008636,"2":0.004227,"3":0.004418,"4":0.004293,"5":0.004227,"6":0.004725,"7":0.008636,"8":0.008942,"9":0.004707,G:0.0082,B:0.016581,C:0.004317,D:0.00685,M:0.00685,N:0.00685,O:0.005014,g:0.006015,h:0.004879,i:0.006597,j:0.006597,k:0.013434,l:0.006702,m:0.006015,n:0.005595,o:0.004393,p:0.008652,q:0.004879,r:0.004879,s:0.004318,t:0.005152,u:0.005014,v:0.009758,w:0.004879,x:0.008636,y:0.004283,z:0.004367,AB:0.004827,BB:0.004707,CB:0.004707,DB:0.004326,EB:0.008922,FB:0.014349,GB:0.004425,HB:0.00472,IB:0.004425,JB:0.004425,KB:0.00472,LB:0.004532,MB:0.004566,T:0.02283,NB:0.00867,OB:0.004656,PB:0.004642,QB:0.004318,RB:0.00944,SB:0.004293,TB:0.004293,UB:0.004298,VB:0.096692,WB:0.004201,XB:0.004141,YB:0.004043,ZB:0.004318,aB:0.060452,P:0.695198,Q:0.358394,R:0,"2B":0.00685,"3B":0,"4B":0.008392,"5B":0.004706,bB:0.006229,jB:0.004879,"6B":0.008786,cB:0.00472},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","G","2B","3B","4B","5B","B","bB","jB","6B","C","cB","D","M","N","O","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","AB","BB","CB","DB","EB","FB","GB","HB","IB","JB","KB","LB","MB","T","NB","OB","PB","QB","RB","SB","TB","UB","VB","WB","XB","YB","ZB","aB","P","Q","R","","",""],E:"Opera",F:{"0":1470096000,"1":1474329600,"2":1477267200,"3":1481587200,"4":1486425600,"5":1490054400,"6":1494374400,"7":1498003200,"8":1502236800,"9":1506470400,G:1150761600,"2B":1223424000,"3B":1251763200,"4B":1267488000,"5B":1277942400,B:1292457600,bB:1302566400,jB:1309219200,"6B":1323129600,C:1323129600,cB:1352073600,D:1372723200,M:1377561600,N:1381104000,O:1386288000,g:1390867200,h:1393891200,i:1399334400,j:1401753600,k:1405987200,l:1409616000,m:1413331200,n:1417132800,o:1422316800,p:1425945600,q:1430179200,r:1433808000,s:1438646400,t:1442448000,u:1445904000,v:1449100800,w:1454371200,x:1457308800,y:1462320000,z:1465344000,AB:1510099200,BB:1515024000,CB:1517961600,DB:1521676800,EB:1525910400,FB:1530144000,GB:1534982400,HB:1537833600,IB:1543363200,JB:1548201600,KB:1554768000,LB:1561593600,MB:1566259200,T:1570406400,NB:1573689600,OB:1578441600,PB:1583971200,QB:1587513600,RB:1592956800,SB:1595894400,TB:1600128000,UB:1603238400,VB:1613520000,WB:1612224000,XB:1616544000,YB:1619568000,ZB:1623715200,aB:1627948800,P:1631577600,Q:1633392000,R:1635984000},D:{G:"o",B:"o",C:"o","2B":"o","3B":"o","4B":"o","5B":"o",bB:"o",jB:"o","6B":"o",cB:"o"}},G:{A:{F:0.00145527,D:3.10555,hB:0,"7B":0,kB:0.00291054,"8B":0.00727635,"9B":0.0713083,AC:0.0232843,BC:0.0116422,CC:0.0203738,DC:0.106235,EC:0.037837,FC:0.129519,GC:0.0771293,HC:0.0480239,IC:0.0509345,JC:0.665059,KC:0.0422029,LC:0.0203738,MC:0.10769,NC:0.343444,OC:1.27918,PC:8.40273},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","hB","7B","kB","8B","9B","AC","F","BC","CC","DC","EC","FC","GC","HC","IC","JC","KC","LC","MC","NC","OC","PC","D","","",""],E:"Safari on iOS",F:{hB:1270252800,"7B":1283904000,kB:1299628800,"8B":1331078400,"9B":1359331200,AC:1394409600,F:1410912000,BC:1413763200,CC:1442361600,DC:1458518400,EC:1473724800,FC:1490572800,GC:1505779200,HC:1522281600,IC:1537142400,JC:1553472000,KC:1568851200,LC:1572220800,MC:1580169600,NC:1585008000,OC:1600214400,PC:1619395200,D:1632096000}},H:{A:{QC:1.08682},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","QC","","",""],E:"Opera Mini",F:{QC:1426464000}},I:{A:{dB:0,I:0.0202897,H:0,RC:0,SC:0,TC:0,UC:0.0112721,kB:0.0428338,VC:0,WC:0.198388},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","RC","SC","TC","dB","I","UC","kB","VC","WC","H","","",""],E:"Android Browser",F:{RC:1256515200,SC:1274313600,TC:1291593600,dB:1298332800,I:1318896000,UC:1341792000,kB:1374624000,VC:1386547200,WC:1401667200,H:1634774400}},J:{A:{E:0,A:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","E","A","","",""],E:"Blackberry Browser",F:{E:1325376000,A:1359504000}},K:{A:{A:0,B:0,C:0,T:0.0111391,bB:0,jB:0,cB:0},B:"o",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","bB","jB","C","cB","T","","",""],E:"Opera Mobile",F:{A:1287100800,B:1300752000,bB:1314835200,jB:1318291200,C:1330300800,cB:1349740800,T:1613433600},D:{T:"webkit"}},L:{A:{H:37.6597},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","H","","",""],E:"Chrome for Android",F:{H:1634774400}},M:{A:{S:0.278467},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","S","","",""],E:"Firefox for Android",F:{S:1630972800}},N:{A:{A:0.0115934,B:0.022664},B:"ms",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","A","B","","",""],E:"IE Mobile",F:{A:1340150400,B:1353456000}},O:{A:{XC:0.977476},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","XC","","",""],E:"UC Browser for Android",F:{XC:1471392000},D:{XC:"webkit"}},P:{A:{I:0.232512,YC:0.0103543,ZC:0.010304,aC:0.0739812,bC:0.0103584,cC:0.0317062,iB:0.0105043,dC:0.0951187,eC:0.042275,fC:0.147962,gC:0.211375,hC:2.10318},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","I","YC","ZC","aC","bC","cC","iB","dC","eC","fC","gC","hC","","",""],E:"Samsung Internet",F:{I:1461024000,YC:1481846400,ZC:1509408000,aC:1528329600,bC:1546128000,cC:1554163200,iB:1567900800,dC:1582588800,eC:1593475200,fC:1605657600,gC:1618531200,hC:1629072000}},Q:{A:{iC:0.164807},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","iC","","",""],E:"QQ Browser",F:{iC:1589846400}},R:{A:{jC:0},B:"webkit",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","jC","","",""],E:"Baidu Browser",F:{jC:1491004800}},S:{A:{kC:0.062513},B:"moz",C:["","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","","kC","","",""],E:"KaiOS Browser",F:{kC:1527811200}}}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/browserVersions.js <del>module.exports={"0":"39","1":"40","2":"41","3":"42","4":"43","5":"44","6":"45","7":"46","8":"47","9":"48",A:"10",B:"11",C:"12",D:"15",E:"7",F:"8",G:"9",H:"95",I:"4",J:"6",K:"13",L:"14",M:"16",N:"17",O:"18",P:"79",Q:"80",R:"81",S:"92",T:"64",U:"83",V:"84",W:"85",X:"86",Y:"87",Z:"88",a:"89",b:"90",c:"91",d:"93",e:"94",f:"5",g:"19",h:"20",i:"21",j:"22",k:"23",l:"24",m:"25",n:"26",o:"27",p:"28",q:"29",r:"30",s:"31",t:"32",u:"33",v:"34",w:"35",x:"36",y:"37",z:"38",AB:"49",BB:"50",CB:"51",DB:"52",EB:"53",FB:"54",GB:"55",HB:"56",IB:"57",JB:"58",KB:"60",LB:"62",MB:"63",NB:"65",OB:"66",PB:"67",QB:"68",RB:"69",SB:"70",TB:"71",UB:"72",VB:"73",WB:"74",XB:"75",YB:"76",ZB:"77",aB:"78",bB:"11.1",cB:"12.1",dB:"3",eB:"59",fB:"61",gB:"96",hB:"3.2",iB:"10.1",jB:"11.5",kB:"4.2-4.3",lB:"5.5",mB:"2",nB:"82",oB:"3.5",pB:"3.6",qB:"97",rB:"98",sB:"99",tB:"3.1",uB:"5.1",vB:"6.1",wB:"7.1",xB:"9.1",yB:"13.1",zB:"14.1","0B":"15.1","1B":"TP","2B":"9.5-9.6","3B":"10.0-10.1","4B":"10.5","5B":"10.6","6B":"11.6","7B":"4.0-4.1","8B":"5.0-5.1","9B":"6.0-6.1",AC:"7.0-7.1",BC:"8.1-8.4",CC:"9.0-9.2",DC:"9.3",EC:"10.0-10.2",FC:"10.3",GC:"11.0-11.2",HC:"11.3-11.4",IC:"12.0-12.1",JC:"12.2-12.5",KC:"13.0-13.1",LC:"13.2",MC:"13.3",NC:"13.4-13.7",OC:"14.0-14.4",PC:"14.5-14.8",QC:"all",RC:"2.1",SC:"2.2",TC:"2.3",UC:"4.1",VC:"4.4",WC:"4.4.3-4.4.4",XC:"12.12",YC:"5.0-5.4",ZC:"6.2-6.4",aC:"7.2-7.4",bC:"8.2",cC:"9.2",dC:"11.1-11.2",eC:"12.0",fC:"13.0",gC:"14.0",hC:"15.0",iC:"10.4",jC:"7.12",kC:"2.5"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/aac.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i oB pB","132":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G","16":"A B"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"2":"QC"},I:{"1":"dB I H UC kB VC WC","2":"RC SC TC"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"132":"S"},N:{"1":"A","2":"B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"132":"kC"}},B:6,C:"AAC audio file format"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/abortcontroller.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"M N O P Q R U V W X Y Z a b c S d e H","2":"C K L D"},C:{"1":"IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB oB pB"},D:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB"},E:{"1":"K L D cB yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB","130":"C bB"},F:{"1":"EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"cC iB dC eC fC gC hC","2":"I YC ZC aC bC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:1,C:"AbortController & AbortSignal"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ac3-ec3.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O","2":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F hB 7B kB 8B 9B AC BC","132":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E","132":"A"},K:{"2":"A B C T bB jB","132":"cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"132":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"AC-3 (Dolby Digital) and EC-3 (Dolby Digital Plus) codecs"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/accelerometer.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"JB eB KB fB LB MB T NB OB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:4,C:"Accelerometer"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/addeventlistener.js <del>module.exports={A:{A:{"1":"G A B","130":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","257":"mB dB I f J oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"EventTarget.addEventListener()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/alternate-stylesheet.js <del>module.exports={A:{A:{"1":"F G A B","2":"J E lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"G B C 2B 3B 4B 5B bB jB 6B cB","16":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"16":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"16":"E A"},K:{"2":"T","16":"A B C bB jB cB"},L:{"16":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"XC"},P:{"16":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"16":"jC"},S:{"1":"kC"}},B:1,C:"Alternate stylesheet"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ambient-light.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K","132":"L D M N O","322":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i oB pB","132":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB","194":"KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","322":"JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB 2B 3B 4B 5B bB jB 6B cB","322":"VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"132":"kC"}},B:4,C:"Ambient Light Sensor"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/apng.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB"},D:{"1":"eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},E:{"1":"F G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB wB"},F:{"1":"7 8 9 B C AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"0 1 2 3 4 5 6 G D M N O g h i j k l m n o p q r s t u v w x y z"},G:{"1":"F D BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","2":"I YC ZC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:7,C:"Animated PNG (APNG)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find-index.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l oB pB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E","16":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"Array.prototype.findIndex"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-find.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"D M N O P Q R U V W X Y Z a b c S d e H","16":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l oB pB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E","16":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"Array.prototype.find"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-flat.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB oB pB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB"},E:{"1":"C K L D cB yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB bB"},F:{"1":"HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"iB dC eC fC gC hC","2":"I YC ZC aC bC cC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"flat & flatMap array methods"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/array-includes.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"L D M N O P Q R U V W X Y Z a b c S d e H","2":"C K"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"Array.prototype.includes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/arrow-functions.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i oB pB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"Arrow functions"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/asmjs.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O","132":"P Q R U V W X Y Z a b c S d e H","322":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i oB pB"},D:{"2":"I f J E F G A B C K L D M N O g h i j k l m n o","132":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","132":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","132":"H"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","132":"T"},L:{"132":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I","132":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"132":"iC"},R:{"132":"jC"},S:{"1":"kC"}},B:6,C:"asm.js"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-clipboard.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB oB pB","132":"MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","66":"JB eB KB fB"},E:{"1":"L D yB zB 0B 1B","2":"I f J E F G A B C K tB hB uB vB wB xB iB bB cB"},F:{"1":"AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC","260":"D OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","260":"H"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","260":"T"},L:{"1":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC","260":"cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"Asynchronous Clipboard API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/async-functions.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"D M N O P Q R U V W X Y Z a b c S d e H","2":"C K","194":"L"},C:{"1":"DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB oB pB"},D:{"1":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"1":"B C K L D bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB","514":"iB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC","514":"FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I YC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"Async functions"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/atob-btoa.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 5B bB jB 6B cB","2":"G 2B 3B","16":"4B"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Base64 encoding and decoding"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio-api.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K","33":"L D M N O g h i j k l m n o p q r s t u"},E:{"1":"D zB 0B 1B","2":"I f tB hB uB","33":"J E F G A B C K L vB wB xB iB bB cB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"D M N O g h i"},G:{"1":"D PC","2":"hB 7B kB 8B","33":"F 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"Web Audio API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audio.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB","132":"I f J E F G A B C K L D M N O g oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","2":"G","4":"2B 3B"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB"},H:{"2":"QC"},I:{"1":"dB I H TC UC kB VC WC","2":"RC SC"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Audio element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/audiotracks.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O","322":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t oB pB","194":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"0 1 2 3 4 5 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","322":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB"},F:{"2":"G B C D M N O g h i j k l m n o p q r s 2B 3B 4B 5B bB jB 6B cB","322":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"322":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"194":"kC"}},B:1,C:"Audio Tracks"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/autofocus.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"dB I H UC kB VC WC","2":"RC SC TC"},J:{"1":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"2":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:1,C:"Autofocus attribute"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/auxclick.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB oB pB","129":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"Auxclick"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/av1.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N","194":"O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB oB pB","66":"GB HB IB JB eB KB fB LB MB T","260":"NB","516":"OB"},D:{"1":"SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB","66":"PB QB RB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1090":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"eC fC gC hC","2":"I YC ZC aC bC cC iB dC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"AV1 video format"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/avif.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB oB pB","194":"ZB aB P Q R nB U V W X Y Z a b c S","257":"d e H gB"},D:{"1":"W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"AVIF image format"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-attachment.js <del>module.exports={A:{A:{"1":"G A B","132":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","132":"mB dB I f J E F G A B C K L D M N O g h i j k l oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"f J E F G A B C uB vB wB xB iB bB cB","132":"I K tB hB yB","2050":"L D zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","132":"G 2B 3B"},G:{"2":"hB 7B kB","772":"F 8B 9B AC BC CC DC EC FC GC HC IC JC","2050":"D KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC VC WC","132":"UC kB"},J:{"260":"E A"},K:{"1":"B C bB jB cB","2":"T","132":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"2":"I","1028":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1028":"jC"},S:{"1":"kC"}},B:4,C:"CSS background-attachment"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-clip-text.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"D M N O","33":"C K L P Q R U V W X Y Z a b c S d e H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"16":"tB hB","33":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"16":"hB 7B kB 8B","33":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"16":"dB RC SC TC","33":"I H UC kB VC WC"},J:{"33":"E A"},K:{"16":"A B C bB jB cB","33":"T"},L:{"33":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"33":"XC"},P:{"33":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"33":"iC"},R:{"33":"jC"},S:{"1":"kC"}},B:7,C:"Background-clip: text"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-img-opts.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB","36":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","516":"I f J E F G A B C K L"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","772":"I f J tB hB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","2":"G 2B","36":"3B"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","4":"hB 7B kB 9B","516":"8B"},H:{"132":"QC"},I:{"1":"H VC WC","36":"RC","516":"dB I UC kB","548":"SC TC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS3 Background-image options"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-position-x-y.js <del>module.exports={A:{A:{"1":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:7,C:"background-position-x & background-position-y"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-repeat-round-space.js <del>module.exports={A:{A:{"1":"A B","2":"J E F lB","132":"G"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","2":"G D M N O 2B 3B"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"1":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"B C T bB jB cB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:4,C:"CSS background-repeat round and space"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/background-sync.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e oB pB","16":"H gB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"Background Sync API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/battery-status.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"4 5 6 7 8 9 AB BB CB","2":"mB dB I f J E F G DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","132":"0 1 2 3 M N O g h i j k l m n o p q r s t u v w x y z","164":"A B C K L D"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x","66":"y"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"Battery Status API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beacon.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"L D M N O P Q R U V W X Y Z a b c S d e H","2":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"C K L D bB cB yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"Beacon API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/beforeafterprint.js <del>module.exports={A:{A:{"1":"J E F G A B","16":"lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f oB pB"},D:{"1":"MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"16":"E A"},K:{"2":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"XC"},P:{"2":"YC ZC aC bC cC iB dC eC fC gC hC","16":"I"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:1,C:"Printing Events"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bigint.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T oB pB","194":"NB OB PB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB"},E:{"1":"L D zB 0B 1B","2":"I f J E F G A B C K tB hB uB vB wB xB iB bB cB yB"},F:{"1":"FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"cC iB dC eC fC gC hC","2":"I YC ZC aC bC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"BigInt"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/blobbuilder.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f oB pB","36":"J E F G A B C"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E","36":"F G A B C K L D M N O g"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B C 2B 3B 4B 5B bB jB 6B"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B"},H:{"2":"QC"},I:{"1":"H","2":"RC SC TC","36":"dB I UC kB VC WC"},J:{"1":"A","2":"E"},K:{"1":"T cB","2":"A B C bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"Blob constructing"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/bloburls.js <del>module.exports={A:{A:{"2":"J E F G lB","129":"A B"},B:{"1":"D M N O P Q R U V W X Y Z a b c S d e H","129":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E","33":"F G A B C K L D M N O g h i j"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B","33":"9B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB RC SC TC","33":"I UC kB"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"Blob URLs"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-image.js <del>module.exports={A:{A:{"1":"B","2":"J E F G A lB"},B:{"1":"L D M N O P Q R U V W X Y Z a b c S d e H","129":"C K"},C:{"1":"BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB","260":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB","804":"I f J E F G A B C K L oB pB"},D:{"1":"HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","260":"CB DB EB FB GB","388":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB","1412":"D M N O g h i j k l m n o p q","1956":"I f J E F G A B C K L"},E:{"129":"A B C K L D xB iB bB cB yB zB 0B 1B","1412":"J E F G vB wB","1956":"I f tB hB uB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G 2B 3B","260":"0 1 2 3 z","388":"D M N O g h i j k l m n o p q r s t u v w x y","1796":"4B 5B","1828":"B C bB jB 6B cB"},G:{"129":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","1412":"F 9B AC BC CC","1956":"hB 7B kB 8B"},H:{"1828":"QC"},I:{"1":"H","388":"VC WC","1956":"dB I RC SC TC UC kB"},J:{"1412":"A","1924":"E"},K:{"1":"T","2":"A","1828":"B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"388":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","260":"YC ZC","388":"I"},Q:{"260":"iC"},R:{"260":"jC"},S:{"260":"kC"}},B:4,C:"CSS3 Border images"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/border-radius.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","257":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB","289":"dB oB pB","292":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"I"},E:{"1":"f E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","33":"I tB hB","129":"J uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","2":"G 2B 3B"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","33":"hB"},H:{"2":"QC"},I:{"1":"dB I H SC TC UC kB VC WC","33":"RC"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"257":"kC"}},B:4,C:"CSS3 Border-radius (rounded corners)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/broadcastchannel.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y oB pB"},D:{"1":"FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB"},E:{"1":"1B","2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","2":"I YC ZC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:1,C:"BroadcastChannel"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/brotli.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"D M N O P Q R U V W X Y Z a b c S d e H","2":"C K L"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","194":"AB","257":"BB"},E:{"1":"K L D yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB iB","513":"B C bB cB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w 2B 3B 4B 5B bB jB 6B cB","194":"x y"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:6,C:"Brotli Accept-Encoding/Content-Encoding"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/calc.js <del>module.exports={A:{A:{"2":"J E F lB","260":"G","516":"A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","33":"I f J E F G A B C K L D"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O","33":"g h i j k l m"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB","33":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B","33":"9B"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB","132":"VC WC"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"calc() as CSS unit value"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-blending.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O P Q R U V W X Y Z a b c S d e H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"Canvas blend modes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas-text.js <del>module.exports={A:{A:{"1":"G A B","2":"lB","8":"J E F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","8":"mB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","8":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","8":"G 2B 3B"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Text API for Canvas"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/canvas.js <del>module.exports={A:{A:{"1":"G A B","2":"lB","8":"J E F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB pB","132":"mB dB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","132":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"260":"QC"},I:{"1":"dB I H UC kB VC WC","132":"RC SC TC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Canvas (basic support)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ch-unit.js <del>module.exports={A:{A:{"2":"J E F lB","132":"G A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"ch (character) unit"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/chacha20-poly1305.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t","129":"0 1 2 3 4 5 6 7 8 9 u v w x y z"},E:{"1":"C K L D bB cB yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC","16":"WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"ChaCha20-Poly1305 cipher suites for TLS"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/channel-messaging.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m oB pB","194":"0 1 n o p q r s t u v w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 5B bB jB 6B cB","2":"G 2B 3B","16":"4B"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Channel messaging"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/childnode-remove.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O P Q R U V W X Y Z a b c S d e H","16":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB","16":"J"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"ChildNode.remove()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/classlist.js <del>module.exports={A:{A:{"8":"J E F G lB","1924":"A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","8":"mB dB oB","516":"l m","772":"I f J E F G A B C K L D M N O g h i j k pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","8":"I f J E","516":"l m n o","772":"k","900":"F G A B C K L D M N O g h i j"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","8":"I f tB hB","900":"J uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","8":"G B 2B 3B 4B 5B bB","900":"C jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","8":"hB 7B kB","900":"8B 9B"},H:{"900":"QC"},I:{"1":"H VC WC","8":"RC SC TC","900":"dB I UC kB"},J:{"1":"A","900":"E"},K:{"1":"T","8":"A B","900":"C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"900":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"classList (DOMTokenList)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/client-hints-dpr-width-viewport.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"2":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:6,C:"Client Hints: DPR, Width, Viewport-Width"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/clipboard.js <del>module.exports={A:{A:{"2436":"J E F G A B lB"},B:{"260":"N O","2436":"C K L D M","8196":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i oB pB","772":"0 1 j k l m n o p q r s t u v w x y z","4100":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"I f J E F G A B C","2564":"0 1 2 3 K L D M N O g h i j k l m n o p q r s t u v w x y z","8196":"JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","10244":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB"},E:{"1":"C K L D cB yB zB 0B 1B","16":"tB hB","2308":"A B iB bB","2820":"I f J E F G uB vB wB xB"},F:{"2":"G B 2B 3B 4B 5B bB jB 6B","16":"C","516":"cB","2564":"D M N O g h i j k l m n o p q","8196":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","10244":"0 1 2 3 4 5 r s t u v w x y z"},G:{"1":"D IC JC KC LC MC NC OC PC","2":"hB 7B kB","2820":"F 8B 9B AC BC CC DC EC FC GC HC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB","260":"H","2308":"VC WC"},J:{"2":"E","2308":"A"},K:{"2":"A B C bB jB","16":"cB","260":"T"},L:{"8196":"H"},M:{"1028":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2052":"YC ZC","2308":"I","8196":"aC bC cC iB dC eC fC gC hC"},Q:{"10244":"iC"},R:{"2052":"jC"},S:{"4100":"kC"}},B:5,C:"Synchronous Clipboard API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/colr.js <del>module.exports={A:{A:{"2":"J E F lB","257":"G A B"},B:{"1":"C K L D M N O","513":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB","513":"TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"L D zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB iB","129":"B C K bB cB yB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB 2B 3B 4B 5B bB jB 6B cB","513":"JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"16":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"1":"XC"},P:{"1":"iB dC eC fC gC hC","2":"I YC ZC aC bC cC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"COLR/CPAL(v0) Font Formats"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/comparedocumentposition.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","16":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L","132":"D M N O g h i j k l m n o p q"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","16":"I f J tB hB","132":"E F G vB wB xB","260":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","16":"G B 2B 3B 4B 5B bB jB","132":"D M"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB","132":"F 7B kB 8B 9B AC BC CC DC"},H:{"1":"QC"},I:{"1":"H VC WC","16":"RC SC","132":"dB I TC UC kB"},J:{"132":"E A"},K:{"1":"C T cB","16":"A B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Node.compareDocumentPosition()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-basic.js <del>module.exports={A:{A:{"1":"A B","2":"J E lB","132":"F G"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R bB jB 6B cB","2":"G 2B 3B 4B 5B"},G:{"1":"hB 7B kB 8B","513":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"4097":"QC"},I:{"1025":"dB I H RC SC TC UC kB VC WC"},J:{"258":"E A"},K:{"2":"A","258":"B C bB jB cB","1025":"T"},L:{"1025":"H"},M:{"2049":"S"},N:{"258":"A B"},O:{"258":"XC"},P:{"1025":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1025":"jC"},S:{"1":"kC"}},B:1,C:"Basic console logging functions"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/console-time.js <del>module.exports={A:{A:{"1":"B","2":"J E F G A lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R bB jB 6B cB","2":"G 2B 3B 4B 5B","16":"B"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"T","16":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"console.time and console.timeEnd"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/const.js <del>module.exports={A:{A:{"2":"J E F G A lB","2052":"B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","132":"mB dB I f J E F G A B C oB pB","260":"K L D M N O g h i j k l m n o p q r s t u v w"},D:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","260":"I f J E F G A B C K L D M N O g h","772":"0 1 i j k l m n o p q r s t u v w x y z","1028":"2 3 4 5 6 7 8 9"},E:{"1":"B C K L D bB cB yB zB 0B 1B","260":"I f A tB hB iB","772":"J E F G uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G 2B","132":"B 3B 4B 5B bB jB","644":"C 6B cB","772":"D M N O g h i j k l m n o","1028":"p q r s t u v w"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","260":"hB 7B kB EC FC","772":"F 8B 9B AC BC CC DC"},H:{"644":"QC"},I:{"1":"H","16":"RC SC","260":"TC","772":"dB I UC kB VC WC"},J:{"772":"E A"},K:{"1":"T","132":"A B bB jB","644":"C cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","1028":"I"},Q:{"1":"iC"},R:{"1028":"jC"},S:{"1":"kC"}},B:6,C:"const"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/constraint-validation.js <del>module.exports={A:{A:{"2":"J E F G lB","900":"A B"},B:{"1":"N O P Q R U V W X Y Z a b c S d e H","388":"L D M","900":"C K"},C:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","260":"AB BB","388":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z","900":"I f J E F G A B C K L D M N O g h i j k l m n o p"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L","388":"0 m n o p q r s t u v w x y z","900":"D M N O g h i j k l"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","16":"I f tB hB","388":"F G wB xB","900":"J E uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G B 2B 3B 4B 5B bB jB","388":"D M N O g h i j k l m n","900":"C 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB","388":"F AC BC CC DC","900":"8B 9B"},H:{"2":"QC"},I:{"1":"H","16":"dB RC SC TC","388":"VC WC","900":"I UC kB"},J:{"16":"E","388":"A"},K:{"1":"T","16":"A B bB jB","900":"C cB"},L:{"1":"H"},M:{"1":"S"},N:{"900":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"388":"kC"}},B:1,C:"Constraint Validation API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contenteditable.js <del>module.exports={A:{A:{"1":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB","4":"dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB"},H:{"2":"QC"},I:{"1":"dB I H UC kB VC WC","2":"RC SC TC"},J:{"1":"E A"},K:{"1":"T cB","2":"A B C bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"contenteditable attribute (basic support)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy.js <del>module.exports={A:{A:{"2":"J E F G lB","132":"A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","129":"I f J E F G A B C K L D M N O g h i j"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K","257":"L D M N O g h i j k l"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB","257":"J vB","260":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB","257":"9B","260":"8B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E","257":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"257":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"Content Security Policy 1.0"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/contentsecuritypolicy2.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L","32772":"D M N O"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r oB pB","132":"s t u v","260":"w","516":"0 1 2 3 4 5 x y z","8196":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w","1028":"x y z","2052":"0"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j 2B 3B 4B 5B bB jB 6B cB","1028":"k l m","2052":"n"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"4100":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"8196":"kC"}},B:2,C:"Content Security Policy Level 2"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cookie-store-api.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"Y Z a b c S d e H","2":"C K L D M N O","194":"P Q R U V W X"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB","194":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB 2B 3B 4B 5B bB jB 6B cB","194":"CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"Cookie Store API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cors.js <del>module.exports={A:{A:{"1":"B","2":"J E lB","132":"A","260":"F G"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB dB","1025":"fB LB MB T NB OB PB QB RB SB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","132":"I f J E F G A B C"},E:{"2":"tB hB","513":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","644":"I f uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B 2B 3B 4B 5B bB jB 6B"},G:{"513":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","644":"hB 7B kB 8B"},H:{"2":"QC"},I:{"1":"H VC WC","132":"dB I RC SC TC UC kB"},J:{"1":"A","132":"E"},K:{"1":"C T cB","2":"A B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","132":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Cross-Origin Resource Sharing"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/createimagebitmap.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","3076":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB","132":"BB CB","260":"DB EB","516":"FB GB HB IB JB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w x 2B 3B 4B 5B bB jB 6B cB","132":"y z","260":"0 1","516":"2 3 4 5 6"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"3076":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","16":"I YC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"3076":"kC"}},B:1,C:"createImageBitmap"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/credential-management.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","66":"9 AB BB","129":"CB DB EB FB GB HB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","2":"I YC ZC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"Credential Management API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/cryptography.js <del>module.exports={A:{A:{"2":"lB","8":"J E F G A","164":"B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","513":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","8":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s oB pB","66":"t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","8":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x"},E:{"1":"B C K L D bB cB yB zB 0B 1B","8":"I f J E tB hB uB vB","289":"F G A wB xB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","8":"G B C D M N O g h i j k 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","8":"hB 7B kB 8B 9B AC","289":"F BC CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","8":"dB I RC SC TC UC kB VC WC"},J:{"8":"E A"},K:{"1":"T","8":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A","164":"B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"Web Cryptography"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-all.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC"},H:{"2":"QC"},I:{"1":"H WC","2":"dB I RC SC TC UC kB VC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS all property"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-animation.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I oB pB","33":"f J E F G A B C K L D"},D:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"0 1 2 3 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"tB hB","33":"J E F uB vB wB","292":"I f"},F:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B 2B 3B 4B 5B bB jB 6B","33":"C D M N O g h i j k l m n o p q"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","33":"F 9B AC BC","164":"hB 7B kB 8B"},H:{"2":"QC"},I:{"1":"H","33":"I UC kB VC WC","164":"dB RC SC TC"},J:{"33":"E A"},K:{"1":"T cB","2":"A B C bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"33":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"CSS Animation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-any-link.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","16":"mB","33":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB oB pB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","16":"I f J tB hB uB","33":"E F vB wB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB 8B","33":"F 9B AC BC"},H:{"2":"QC"},I:{"1":"H","16":"dB I RC SC TC UC kB","33":"VC WC"},J:{"16":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"33":"XC"},P:{"1":"cC iB dC eC fC gC hC","16":"I","33":"YC ZC aC bC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"33":"kC"}},B:5,C:"CSS :any-link selector"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-appearance.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"V W X Y Z a b c S d e H","33":"U","164":"P Q R","388":"C K L D M N O"},C:{"1":"Q R nB U V W X Y Z a b c S d e H gB","164":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P","676":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v oB pB"},D:{"1":"V W X Y Z a b c S d e H gB qB rB sB","33":"U","164":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},E:{"1":"1B","164":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B"},F:{"1":"VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"SB TB UB","164":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB"},G:{"164":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","164":"dB I RC SC TC UC kB VC WC"},J:{"164":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","388":"B"},O:{"164":"XC"},P:{"164":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"164":"iC"},R:{"164":"jC"},S:{"164":"kC"}},B:5,C:"CSS Appearance"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-apply-rule.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","194":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB","194":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C D M N O g h i j k l m n o p q r s t u v w x y 2B 3B 4B 5B bB jB 6B cB","194":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"194":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I","194":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"194":"jC"},S:{"2":"kC"}},B:7,C:"CSS @apply rule"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-at-counter-style.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b","132":"c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t oB pB","132":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b","132":"c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB 2B 3B 4B 5B bB jB 6B cB","132":"ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","132":"H"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","132":"T"},L:{"132":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"132":"kC"}},B:4,C:"CSS Counter Styles"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-autofill.js <del>module.exports={A:{D:{"1":"gB qB","33":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H"},L:{"1":"gB qB","33":"0 1 2 3 4 5 6 7 8 9 O m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H"},B:{"1":"gB qB","2":"C K L D M N O","33":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"X Y Z a b c S d e H gB qB rB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W oB pB"},M:{"1":"X Y Z a b c S d e H gB qB rB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB P Q R nB U V W"},A:{"2":"mB dB I f J E F G A B lB"},F:{"1":"nB U","2":"mB dB I f J E F G A B C oB pB uB wB xB cC iB 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},K:{"33":"2 3 4 5 6 7 8 9 L D M O g h i j l m n o p q r t u v w x y AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB","34":"B C iB bB jB cB"},E:{"33":"dB I f J E F G A B C K L D tB uB vB xB iB bB cB yB zB 0B","34":"mB"},G:{"33":"mB dB I f J E F G A B C K L D hB vB DC FC 0B"},P:{"33":"RC hB bC cC eC cB fC LC gC hC"},I:{"1":"gB qB","33":"0 1 2 3 4 5 6 7 8 9 mB dB I y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H SC VC"}},B:6,C:":autofill CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backdrop-filter.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M","257":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB oB pB","578":"SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","194":"8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB"},E:{"2":"I f J E F tB hB uB vB wB","33":"G A B C K L D xB iB bB cB yB zB 0B 1B"},F:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u 2B 3B 4B 5B bB jB 6B cB","194":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"2":"F hB 7B kB 8B 9B AC BC","33":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"578":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"eC fC gC hC","2":"I","194":"YC ZC aC bC cC iB dC"},Q:{"194":"iC"},R:{"194":"jC"},S:{"2":"kC"}},B:7,C:"CSS Backdrop Filter"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-background-offsets.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","2":"G 2B 3B"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"1":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"B C T bB jB cB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS background-position edge offsets"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-backgroundblendmode.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q oB pB"},D:{"1":"0 1 2 3 4 5 6 8 9 w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v","260":"7"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB","132":"F G A wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i 2B 3B 4B 5B bB jB 6B cB","260":"u"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC","132":"F BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS background-blend-mode"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxdecorationbreak.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","164":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s oB pB"},D:{"2":"I f J E F G A B C K L D M N O g h i","164":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J tB hB uB","164":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G 2B 3B 4B 5B","129":"B C bB jB 6B cB","164":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"hB 7B kB 8B 9B","164":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"132":"QC"},I:{"2":"dB I RC SC TC UC kB","164":"H VC WC"},J:{"2":"E","164":"A"},K:{"2":"A","129":"B C bB jB cB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"164":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"164":"iC"},R:{"164":"jC"},S:{"1":"kC"}},B:5,C:"CSS box-decoration-break"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-boxshadow.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB","33":"oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"I f J E F G"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","33":"f","164":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 4B 5B bB jB 6B cB","2":"G 2B 3B"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","33":"7B kB","164":"hB"},H:{"2":"QC"},I:{"1":"I H UC kB VC WC","164":"dB RC SC TC"},J:{"1":"A","33":"E"},K:{"1":"B C T bB jB cB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS3 Box-shadow"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-canvas.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"0 1 2 3 4 5 6 7 8 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"2":"tB hB","33":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","33":"D M N O g h i j k l m n o p q r s t u v"},G:{"33":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"H","33":"dB I RC SC TC UC kB VC WC"},J:{"33":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"YC ZC aC bC cC iB dC eC fC gC hC","33":"I"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"CSS Canvas Drawings"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-caret-color.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB oB pB"},D:{"1":"IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"C K L D bB cB yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","2":"I YC ZC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:4,C:"CSS caret-color"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cascade-layers.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d oB pB","194":"e H gB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H","322":"gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B","578":"1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Cascade Layers"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-case-insensitive.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:5,C:"Case-insensitive CSS attribute selectors"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-clip-path.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N","260":"P Q R U V W X Y Z a b c S d e H","3138":"O"},C:{"1":"FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB","132":"0 1 2 3 4 5 6 7 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","644":"8 9 AB BB CB DB EB"},D:{"2":"I f J E F G A B C K L D M N O g h i j k","260":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","292":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"2":"I f J tB hB uB vB","292":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","260":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","292":"0 1 2 D M N O g h i j k l m n o p q r s t u v w x y z"},G:{"2":"hB 7B kB 8B 9B","292":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB","260":"H","292":"VC WC"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","260":"T"},L:{"260":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"292":"XC"},P:{"292":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"292":"iC"},R:{"260":"jC"},S:{"644":"kC"}},B:4,C:"CSS clip-path property (for HTML)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-adjust.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","33":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"16":"I f J E F G A B C K L D M N O","33":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f tB hB uB","33":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"16":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"16":"dB I RC SC TC UC kB VC WC","33":"H"},J:{"16":"E A"},K:{"2":"A B C bB jB cB","33":"T"},L:{"16":"H"},M:{"1":"S"},N:{"16":"A B"},O:{"16":"XC"},P:{"16":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"33":"iC"},R:{"16":"jC"},S:{"1":"kC"}},B:5,C:"CSS color-adjust"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-color-function.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"D 0B 1B","2":"I f J E F G A tB hB uB vB wB xB","132":"B C K L iB bB cB yB zB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D","2":"F hB 7B kB 8B 9B AC BC CC DC EC","132":"FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS color() function"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-conic-gradients.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB oB pB","578":"XB YB ZB aB P Q R nB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"eB KB fB LB MB T NB OB PB QB"},E:{"1":"K L D cB yB zB 0B 1B","2":"I f J E F G A B C tB hB uB vB wB xB iB bB"},F:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","194":"7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"1":"D JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"iB dC eC fC gC hC","2":"I YC ZC aC bC cC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Conical Gradients"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-container-queries.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S","194":"d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c","194":"d e H gB qB rB sB","450":"S"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB 2B 3B 4B 5B bB jB 6B cB","194":"P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"CSS Container Queries"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-containment.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","194":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB"},D:{"1":"DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB","66":"CB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w x y 2B 3B 4B 5B bB jB 6B cB","66":"0 z"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I YC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"194":"kC"}},B:2,C:"CSS Containment"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-content-visibility.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"W X Y Z a b c S d e H","2":"C K L D M N O P Q R U V"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS content-visibility"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-counters.js <del>module.exports={A:{A:{"1":"F G A B","2":"J E lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS Counters"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-crisp-edges.js <del>module.exports={A:{A:{"2":"J lB","2340":"E F G A B"},B:{"2":"C K L D M N O","1025":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"d e H gB","2":"mB dB oB","513":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S","545":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T pB"},D:{"2":"0 1 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","1025":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f tB hB uB","164":"J","4644":"E F G vB wB xB"},F:{"2":"G B D M N O g h i j k l m n o 2B 3B 4B 5B bB jB","545":"C 6B cB","1025":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB","4260":"8B 9B","4644":"F AC BC CC DC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","1025":"H"},J:{"2":"E","4260":"A"},K:{"2":"A B bB jB","545":"C cB","1025":"T"},L:{"1025":"H"},M:{"545":"S"},N:{"2340":"A B"},O:{"1":"XC"},P:{"1025":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1025":"iC"},R:{"1025":"jC"},S:{"4097":"kC"}},B:7,C:"Crisp edges/pixelated images"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-cross-fade.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","33":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"I f J E F G A B C K L D M","33":"0 1 2 3 4 5 6 7 8 9 N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f tB hB","33":"J E F G uB vB wB xB"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB","33":"F 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB","33":"H VC WC"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","33":"T"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"33":"XC"},P:{"33":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"33":"iC"},R:{"33":"jC"},S:{"2":"kC"}},B:4,C:"CSS Cross-Fade Function"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-default-pseudo.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","16":"mB dB oB pB"},D:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L","132":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","16":"I f tB hB","132":"J E F G A uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G B 2B 3B 4B 5B bB jB","132":"D M N O g h i j k l m n o p q r s t u v w x y","260":"C 6B cB"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB 8B 9B","132":"F AC BC CC DC EC"},H:{"260":"QC"},I:{"1":"H","16":"dB RC SC TC","132":"I UC kB VC WC"},J:{"16":"E","132":"A"},K:{"1":"T","16":"A B C bB jB","260":"cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"132":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","132":"I"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:7,C:":default CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-descendant-gtgt.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O Q R U V W X Y Z a b c S d e H","16":"P"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"B","2":"I f J E F G A C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"Explicit descendant combinator >>"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-deviceadaptation.js <del>module.exports={A:{A:{"2":"J E F G lB","164":"A B"},B:{"66":"P Q R U V W X Y Z a b c S d e H","164":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"I f J E F G A B C K L D M N O g h i j k l m n o p","66":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","66":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"292":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A T","292":"B C bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"164":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"66":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Device Adaptation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-dir-pseudo.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M oB pB","33":"0 1 2 3 4 5 6 7 8 9 N O g h i j k l m n o p q r s t u v w x y z"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b","194":"c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"33":"kC"}},B:5,C:":dir() CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-display-contents.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"a b c S d e H","2":"C K L D M N O","260":"P Q R U V W X Y Z"},C:{"1":"LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x oB pB","260":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB eB KB fB"},D:{"1":"a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"JB eB KB fB LB MB T","260":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z"},E:{"2":"I f J E F G A B tB hB uB vB wB xB iB","260":"L D yB zB 0B 1B","772":"C K bB cB"},F:{"1":"YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB 2B 3B 4B 5B bB jB 6B cB","260":"DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC","260":"D NC OC PC","772":"HC IC JC KC LC MC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"hC","2":"I YC ZC aC bC","260":"cC iB dC eC fC gC"},Q:{"260":"iC"},R:{"2":"jC"},S:{"260":"kC"}},B:5,C:"CSS display: contents"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-element-function.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"33":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","164":"mB dB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"33":"kC"}},B:5,C:"CSS element() function"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-env-function.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T oB pB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB"},E:{"1":"C K L D bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB iB","132":"B"},F:{"1":"HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC","132":"GC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"iB dC eC fC gC hC","2":"I YC ZC aC bC cC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"CSS Environment Variables env()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-exclusions.js <del>module.exports={A:{A:{"2":"J E F G lB","33":"A B"},B:{"2":"P Q R U V W X Y Z a b c S d e H","33":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"33":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Exclusions Level 1"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-featurequeries.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B C 2B 3B 4B 5B bB jB 6B"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"1":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS Feature Queries"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filter-function.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB","33":"G"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC","33":"CC DC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS filter() function"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-filters.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","1028":"K L D M N O","1346":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB","196":"v","516":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u pB"},D:{"1":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N","33":"0 1 2 3 4 5 6 7 8 9 O g h i j k l m n o p q r s t u v w x y z AB BB CB DB"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB","33":"J E F G vB wB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 D M N O g h i j k l m n o p q r s t u v w x y z"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B","33":"F 9B AC BC CC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB","33":"VC WC"},J:{"2":"E","33":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","33":"I YC ZC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"CSS Filter Effects"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-letter.js <del>module.exports={A:{A:{"1":"G A B","16":"lB","516":"F","1540":"J E"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","132":"dB","260":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"f J E F","132":"I"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","16":"f tB","132":"I hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","16":"G 2B","260":"B 3B 4B 5B bB jB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB"},H:{"1":"QC"},I:{"1":"dB I H UC kB VC WC","16":"RC SC","132":"TC"},J:{"1":"E A"},K:{"1":"C T cB","260":"A B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"::first-letter CSS pseudo-element selector"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-first-line.js <del>module.exports={A:{A:{"1":"G A B","132":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS first-line pseudo-element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-fixed.js <del>module.exports={A:{A:{"1":"E F G A B","2":"lB","8":"J"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB iB bB cB yB zB 0B 1B","1025":"xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB","132":"8B 9B AC"},H:{"2":"QC"},I:{"1":"dB H VC WC","260":"RC SC TC","513":"I UC kB"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS position:fixed"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-visible.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"X Y Z a b c S d e H","2":"C K L D M N O","328":"P Q R U V W"},C:{"1":"W X Y Z a b c S d e H gB","2":"mB dB oB pB","161":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V"},D:{"1":"X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB","328":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W"},E:{"2":"I f J E F G A B C K L tB hB uB vB wB xB iB bB cB yB zB","578":"D 0B 1B"},F:{"1":"UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB 2B 3B 4B 5B bB jB 6B cB","328":"OB PB QB RB SB TB"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","578":"D"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"161":"kC"}},B:7,C:":focus-visible CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-focus-within.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB oB pB"},D:{"1":"KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB","194":"eB"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","194":"7"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I YC ZC aC"},Q:{"1":"iC"},R:{"16":"jC"},S:{"2":"kC"}},B:7,C:":focus-within CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-rendering-controls.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","194":"7 8 9 AB BB CB DB EB FB GB HB IB"},D:{"1":"KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","66":"AB BB CB DB EB FB GB HB IB JB eB"},E:{"1":"C K L D bB cB yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB"},F:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w 2B 3B 4B 5B bB jB 6B cB","66":"0 1 2 3 4 5 6 7 x y z"},G:{"1":"D HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I","66":"YC ZC aC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"194":"kC"}},B:5,C:"CSS font-display"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-font-stretch.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F oB pB"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS font-stretch"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gencontent.js <del>module.exports={A:{A:{"1":"G A B","2":"J E lB","132":"F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS Generated content for pseudo-elements"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-gradients.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB","260":"M N O g h i j k l m n o p q r s t u v w","292":"I f J E F G A B C K L D pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"A B C K L D M N O g h i j k l m","548":"I f J E F G"},E:{"2":"tB hB","260":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","292":"J uB","804":"I f"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B 2B 3B 4B 5B","33":"C 6B","164":"bB jB"},G:{"260":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","292":"8B 9B","804":"hB 7B kB"},H:{"2":"QC"},I:{"1":"H VC WC","33":"I UC kB","548":"dB RC SC TC"},J:{"1":"A","548":"E"},K:{"1":"T cB","2":"A B","33":"C","164":"bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS Gradients"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-grid.js <del>module.exports={A:{A:{"2":"J E F lB","8":"G","292":"A B"},B:{"1":"M N O P Q R U V W X Y Z a b c S d e H","292":"C K L D"},C:{"1":"FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O oB pB","8":"0 g h i j k l m n o p q r s t u v w x y z","584":"1 2 3 4 5 6 7 8 9 AB BB CB","1025":"DB EB"},D:{"1":"JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l","8":"m n o p","200":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB","1025":"IB"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f tB hB uB","8":"J E F G A vB wB xB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o 2B 3B 4B 5B bB jB 6B cB","200":"0 1 2 3 4 p q r s t u v w x y z"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B","8":"F 9B AC BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC","8":"kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"292":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"YC","8":"I"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:4,C:"CSS Grid Layout (level 1)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hanging-punctuation.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS hanging-punctuation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-has.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:":has() CSS relational pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphenate.js <del>module.exports={A:{A:{"16":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","16":"C K L D M N O"},C:{"16":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},E:{"16":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"16":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"16":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"16":"QC"},I:{"16":"dB I H RC SC TC UC kB VC WC"},J:{"16":"E A"},K:{"16":"A B C T bB jB cB"},L:{"16":"H"},M:{"16":"S"},N:{"16":"A B"},O:{"16":"XC"},P:{"16":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"16":"iC"},R:{"16":"jC"},S:{"16":"kC"}},B:5,C:"CSS4 Hyphenation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-hyphens.js <del>module.exports={A:{A:{"2":"J E F G lB","33":"A B"},B:{"33":"C K L D M N O","132":"P Q R U V W X Y","260":"Z a b c S d e H"},C:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f oB pB","33":"0 1 2 3 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},D:{"1":"Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","132":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y"},E:{"2":"I f tB hB","33":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","132":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"hB 7B","33":"F D kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"4":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I","132":"YC"},Q:{"2":"iC"},R:{"132":"jC"},S:{"1":"kC"}},B:5,C:"CSS Hyphenation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-orientation.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"a b c S d e H","2":"C K L D M N O P Q","257":"R U V W X Y Z"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m oB pB"},D:{"1":"a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q","257":"R U V W X Y Z"},E:{"1":"L D yB zB 0B 1B","2":"I f J E F G A B C K tB hB uB vB wB xB iB bB cB"},F:{"1":"QB RB SB TB UB","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB 2B 3B 4B 5B bB jB 6B cB","257":"VB WB XB YB ZB aB P Q R"},G:{"1":"D OC PC","132":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"fC gC hC","2":"I YC ZC aC bC cC iB dC eC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:4,C:"CSS3 image-orientation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-image-set.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","164":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W oB pB","66":"X Y","257":"a b c S d e H gB","772":"Z"},D:{"2":"I f J E F G A B C K L D M N O g h","164":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f tB hB uB","132":"A B C K iB bB cB yB","164":"J E F G vB wB xB","516":"L D zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","164":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"hB 7B kB 8B","132":"EC FC GC HC IC JC KC LC MC NC","164":"F 9B AC BC CC DC","516":"D OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB","164":"H VC WC"},J:{"2":"E","164":"A"},K:{"2":"A B C bB jB cB","164":"T"},L:{"164":"H"},M:{"257":"S"},N:{"2":"A B"},O:{"164":"XC"},P:{"164":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"164":"iC"},R:{"164":"jC"},S:{"2":"kC"}},B:5,C:"CSS image-set"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-in-out-of-range.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C","260":"K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p oB pB","516":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB"},D:{"1":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I","16":"f J E F G A B C K L","260":"DB","772":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I tB hB","16":"f","772":"J E F G A uB vB wB xB"},F:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G 2B","260":"0 B C 3B 4B 5B bB jB 6B cB","772":"D M N O g h i j k l m n o p q r s t u v w x y z"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB","772":"F 8B 9B AC BC CC DC EC"},H:{"132":"QC"},I:{"1":"H","2":"dB RC SC TC","260":"I UC kB VC WC"},J:{"2":"E","260":"A"},K:{"1":"T","260":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","260":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"516":"kC"}},B:5,C:":in-range and :out-of-range CSS pseudo-classes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-indeterminate-pseudo.js <del>module.exports={A:{A:{"2":"J E F lB","132":"A B","388":"G"},B:{"1":"P Q R U V W X Y Z a b c S d e H","132":"C K L D M N O"},C:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","16":"mB dB oB pB","132":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB","388":"I f"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L","132":"D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","16":"I f J tB hB","132":"E F G A vB wB xB","388":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G B 2B 3B 4B 5B bB jB","132":"D M N O g h i j k l m","516":"C 6B cB"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB 8B 9B","132":"F AC BC CC DC EC"},H:{"516":"QC"},I:{"1":"H","16":"dB RC SC TC WC","132":"VC","388":"I UC kB"},J:{"16":"E","132":"A"},K:{"1":"T","16":"A B C bB jB","516":"cB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"132":"kC"}},B:7,C:":indeterminate CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-letter.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F tB hB uB vB wB","4":"G","164":"A B C K L D xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F hB 7B kB 8B 9B AC BC","164":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Initial Letter"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-initial-value.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","33":"I f J E F G A B C K L D M N O oB pB","164":"mB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D hB uB vB wB xB iB bB cB yB zB 0B 1B","16":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"2":"QC"},I:{"1":"dB I H TC UC kB VC WC","16":"RC SC"},J:{"1":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS initial value"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-lch-lab.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"D 0B 1B","2":"I f J E F G A B C K L tB hB uB vB wB xB iB bB cB yB zB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"LCH and Lab color values"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-letter-spacing.js <del>module.exports={A:{A:{"1":"G A B","16":"lB","132":"J E F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","132":"I f J E F G A B C K L D M N O g h i j k l m n o p q"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","16":"tB","132":"I f J hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G 2B","132":"B C D M 3B 4B 5B bB jB 6B cB"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"2":"QC"},I:{"1":"H VC WC","16":"RC SC","132":"dB I TC UC kB"},J:{"132":"E A"},K:{"1":"T","132":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"letter-spacing CSS property"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-line-clamp.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M","33":"P Q R U V W X Y Z a b c S d e H","129":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB oB pB","33":"QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"16":"I f J E F G A B C K","33":"0 1 2 3 4 5 6 7 8 9 L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I tB hB","33":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"hB 7B kB","33":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"16":"RC SC","33":"dB I H TC UC kB VC WC"},J:{"33":"E A"},K:{"2":"A B C bB jB cB","33":"T"},L:{"33":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"33":"XC"},P:{"33":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"33":"iC"},R:{"33":"jC"},S:{"2":"kC"}},B:5,C:"CSS line-clamp"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-logical-props.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"a b c S d e H","2":"C K L D M N O","2052":"Y Z","3588":"P Q R U V W X"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB","164":"0 1 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"a b c S d e H gB qB rB sB","292":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB","2052":"Y Z","3588":"RB SB TB UB VB WB XB YB ZB aB P Q R U V W X"},E:{"1":"D 0B 1B","292":"I f J E F G A B C tB hB uB vB wB xB iB bB","2052":"zB","3588":"K L cB yB"},F:{"1":"YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","292":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB","2052":"WB XB","3588":"HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB"},G:{"1":"D","292":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC","2052":"PC","3588":"JC KC LC MC NC OC"},H:{"2":"QC"},I:{"1":"H","292":"dB I RC SC TC UC kB VC WC"},J:{"292":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"292":"XC"},P:{"1":"hC","292":"I YC ZC aC bC cC","3588":"iB dC eC fC gC"},Q:{"3588":"iC"},R:{"3588":"jC"},S:{"3588":"kC"}},B:5,C:"CSS Logical Properties"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-marker-pseudo.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"X Y Z a b c S d e H","2":"C K L D M N O P Q R U V W"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB oB pB"},D:{"1":"X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W"},E:{"1":"1B","2":"I f J E F G A B tB hB uB vB wB xB iB","129":"C K L D bB cB yB zB 0B"},F:{"1":"UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS ::marker pseudo-element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-masks.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M","164":"P Q R U V W X Y Z a b c S d e H","3138":"N","12292":"O"},C:{"1":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB","260":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB oB pB"},D:{"164":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"tB hB","164":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","164":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"164":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"164":"H VC WC","676":"dB I RC SC TC UC kB"},J:{"164":"E A"},K:{"2":"A B C bB jB cB","164":"T"},L:{"164":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"XC"},P:{"164":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"164":"iC"},R:{"164":"jC"},S:{"260":"kC"}},B:4,C:"CSS Masks"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-matches-pseudo.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"Z a b c S d e H","2":"C K L D M N O","1220":"P Q R U V W X Y"},C:{"1":"aB P Q R nB U V W X Y Z a b c S d e H gB","16":"mB dB oB pB","548":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB"},D:{"1":"Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L","164":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T","196":"NB OB PB","1220":"QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y"},E:{"1":"L D zB 0B 1B","2":"I tB hB","16":"f","164":"J E F uB vB wB","260":"G A B C K xB iB bB cB yB"},F:{"1":"XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","164":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB","196":"DB EB FB","1220":"GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB"},G:{"1":"D OC PC","16":"hB 7B kB 8B 9B","164":"F AC BC","260":"CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"QC"},I:{"1":"H","16":"dB RC SC TC","164":"I UC kB VC WC"},J:{"16":"E","164":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"164":"XC"},P:{"1":"hC","164":"I YC ZC aC bC cC iB dC eC fC gC"},Q:{"1220":"iC"},R:{"164":"jC"},S:{"548":"kC"}},B:5,C:":is() CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-math-functions.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB oB pB"},D:{"1":"P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB"},E:{"1":"L D yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB","132":"C K bB cB"},F:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC","132":"HC IC JC KC LC MC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"eC fC gC hC","2":"I YC ZC aC bC cC iB dC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS math functions min(), max() and clamp()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-interaction.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB oB pB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"Media Queries: interaction media features"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-resolution.js <del>module.exports={A:{A:{"2":"J E F lB","132":"G A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB","260":"I f J E F G A B C K L D oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","548":"I f J E F G A B C K L D M N O g h i j k l m n o p"},E:{"2":"tB hB","548":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G","548":"B C 2B 3B 4B 5B bB jB 6B"},G:{"16":"hB","548":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"132":"QC"},I:{"1":"H VC WC","16":"RC SC","548":"dB I TC UC kB"},J:{"548":"E A"},K:{"1":"T cB","548":"A B C bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"Media Queries: resolution feature"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-media-scripting.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"16":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB oB pB","16":"DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB","16":"qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"Media Queries: scripting media feature"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mediaqueries.js <del>module.exports={A:{A:{"8":"J E F lB","129":"G A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","129":"I f J E F G A B C K L D M N O g h i j k l m"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","129":"I f J uB","388":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","129":"hB 7B kB 8B 9B"},H:{"1":"QC"},I:{"1":"H VC WC","129":"dB I RC SC TC UC kB"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS3 Media Queries"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-mixblendmode.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s oB pB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p","194":"0 1 q r s t u v w x y z"},E:{"2":"I f J E tB hB uB vB","260":"F G A B C K L D wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"hB 7B kB 8B 9B AC","260":"F D BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"Blending of HTML/SVG elements"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-motion-paths.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB oB pB"},D:{"1":"7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","194":"4 5 6"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q 2B 3B 4B 5B bB jB 6B cB","194":"r s t"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"CSS Motion Path"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-namespaces.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","16":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS namespaces"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nesting.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Nesting"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-not-sel-list.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"Z a b c S d e H","2":"C K L D M N O Q R U V W X Y","16":"P"},C:{"1":"V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U oB pB"},D:{"1":"Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"hC","2":"I YC ZC aC bC cC iB dC eC fC gC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"selector list argument of :not()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-nth-child-of.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"selector list argument of :nth-child and :nth-last-child CSS pseudo-classes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-opacity.js <del>module.exports={A:{A:{"1":"G A B","4":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS3 Opacity"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-optional-pseudo.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G 2B","132":"B C 3B 4B 5B bB jB 6B cB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB"},H:{"132":"QC"},I:{"1":"dB I H TC UC kB VC WC","16":"RC SC"},J:{"1":"E A"},K:{"1":"T","132":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:7,C:":optional CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-anchor.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB oB pB"},D:{"1":"HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"2":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"CSS overflow-anchor (Scroll Anchoring)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow-overlay.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L"},E:{"1":"I f J E F G A B uB vB wB xB iB bB","16":"tB hB","130":"C K L D cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F 7B kB 8B 9B AC BC CC DC EC FC GC HC","16":"hB","130":"D IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"16":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:7,C:"CSS overflow: overlay"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overflow.js <del>module.exports={A:{A:{"388":"J E F G A B lB"},B:{"1":"b c S d e H","260":"P Q R U V W X Y Z a","388":"C K L D M N O"},C:{"1":"R nB U V W X Y Z a b c S d e H gB","260":"fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q","388":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB oB pB"},D:{"1":"b c S d e H gB qB rB sB","260":"QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a","388":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB"},E:{"1":"1B","260":"L D yB zB 0B","388":"I f J E F G A B C K tB hB uB vB wB xB iB bB cB"},F:{"260":"GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","388":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB 2B 3B 4B 5B bB jB 6B cB"},G:{"260":"D NC OC PC","388":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"388":"QC"},I:{"1":"H","388":"dB I RC SC TC UC kB VC WC"},J:{"388":"E A"},K:{"1":"T","388":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"388":"A B"},O:{"388":"XC"},P:{"1":"hC","388":"I YC ZC aC bC cC iB dC eC fC gC"},Q:{"388":"iC"},R:{"388":"jC"},S:{"388":"kC"}},B:5,C:"CSS overflow property"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-overscroll-behavior.js <del>module.exports={A:{A:{"2":"J E F G lB","132":"A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","132":"C K L D M N","516":"O"},C:{"1":"eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB oB pB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB","260":"MB T"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB 0B 1B","1090":"zB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB 2B 3B 4B 5B bB jB 6B cB","260":"BB CB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"2":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I YC ZC aC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"CSS overscroll-behavior"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-page-break.js <del>module.exports={A:{A:{"388":"A B","900":"J E F G lB"},B:{"388":"C K L D M N O","900":"P Q R U V W X Y Z a b c S d e H"},C:{"772":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","900":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T oB pB"},D:{"900":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"772":"A","900":"I f J E F G B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"16":"G 2B","129":"B C 3B 4B 5B bB jB 6B cB","900":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"900":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"129":"QC"},I:{"900":"dB I H RC SC TC UC kB VC WC"},J:{"900":"E A"},K:{"129":"A B C bB jB cB","900":"T"},L:{"900":"H"},M:{"900":"S"},N:{"388":"A B"},O:{"900":"XC"},P:{"900":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"900":"iC"},R:{"900":"jC"},S:{"900":"kC"}},B:2,C:"CSS page-break properties"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paged-media.js <del>module.exports={A:{A:{"2":"J E lB","132":"F G A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","132":"C K L D M N O"},C:{"2":"mB dB I f J E F G A B C K L D M N O oB pB","132":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","132":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"16":"QC"},I:{"16":"dB I H RC SC TC UC kB VC WC"},J:{"16":"E A"},K:{"16":"A B C T bB jB cB"},L:{"1":"H"},M:{"132":"S"},N:{"258":"A B"},O:{"258":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"132":"kC"}},B:5,C:"CSS Paged Media (@page)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-paint-api.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T"},E:{"2":"I f J E F G A B C tB hB uB vB wB xB iB bB","194":"K L D cB yB zB 0B 1B"},F:{"1":"DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Paint API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder-shown.js <del>module.exports={A:{A:{"2":"J E F G lB","292":"A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","164":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"164":"kC"}},B:5,C:":placeholder-shown CSS pseudo-class"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-placeholder.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","36":"C K L D M N O"},C:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O oB pB","33":"0 1 2 3 4 5 6 7 8 9 g h i j k l m n o p q r s t u v w x y z AB BB"},D:{"1":"IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","36":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I tB hB","36":"f J E F G A uB vB wB xB"},F:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","36":"0 1 2 3 4 D M N O g h i j k l m n o p q r s t u v w x y z"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B","36":"F kB 8B 9B AC BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","36":"dB I RC SC TC UC kB VC WC"},J:{"36":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","36":"I YC ZC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"33":"kC"}},B:5,C:"::placeholder CSS pseudo-element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-read-only-write.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O P Q R U V W X Y Z a b c S d e H","2":"C"},C:{"1":"aB P Q R nB U V W X Y Z a b c S d e H gB","16":"mB","33":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L","132":"D M N O g h i j k l m n o p q r s t u v w"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","16":"tB hB","132":"I f J E F uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G B 2B 3B 4B 5B bB","132":"C D M N O g h i j jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B","132":"F kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","16":"RC SC","132":"dB I TC UC kB VC WC"},J:{"1":"A","132":"E"},K:{"1":"T","2":"A B bB","132":"C jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"33":"kC"}},B:1,C:"CSS :read-only and :read-write selectors"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rebeccapurple.js <del>module.exports={A:{A:{"2":"J E F G A lB","132":"B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB","16":"vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"Rebeccapurple color"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-reflections.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","33":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"33":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"tB hB","33":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"33":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"33":"dB I H RC SC TC UC kB VC WC"},J:{"33":"E A"},K:{"2":"A B C bB jB cB","33":"T"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"33":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"33":"iC"},R:{"33":"jC"},S:{"2":"kC"}},B:7,C:"CSS Reflections"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-regions.js <del>module.exports={A:{A:{"2":"J E F G lB","420":"A B"},B:{"2":"P Q R U V W X Y Z a b c S d e H","420":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","36":"D M N O","66":"g h i j k l m n o p q r s t u v"},E:{"2":"I f J C K L D tB hB uB bB cB yB zB 0B 1B","33":"E F G A B vB wB xB iB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"D hB 7B kB 8B 9B HC IC JC KC LC MC NC OC PC","33":"F AC BC CC DC EC FC GC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"420":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Regions"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-repeating-gradients.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB","33":"I f J E F G A B C K L D pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G","33":"A B C K L D M N O g h i j k l m"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB","33":"J uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B 2B 3B 4B 5B","33":"C 6B","36":"bB jB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB","33":"8B 9B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB RC SC TC","33":"I UC kB"},J:{"1":"A","2":"E"},K:{"1":"T cB","2":"A B","33":"C","36":"bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS Repeating Gradients"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-resize.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","33":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B","132":"cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:4,C:"CSS resize property"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-revert-value.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"V W X Y Z a b c S d e H","2":"C K L D M N O P Q R U"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB oB pB"},D:{"1":"V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB"},F:{"1":"VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS revert value"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-rrggbbaa.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB","194":"DB EB FB GB HB IB JB eB KB fB"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB"},F:{"1":"DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","194":"0 1 2 3 4 5 6 7 8 9 AB BB CB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I","194":"YC ZC aC"},Q:{"2":"iC"},R:{"194":"jC"},S:{"2":"kC"}},B:7,C:"#rrggbbaa hex color notation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-behavior.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","129":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w oB pB"},D:{"2":"0 1 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","129":"fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","450":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB"},E:{"1":"1B","2":"I f J E F G A B C K tB hB uB vB wB xB iB bB cB yB","578":"L D zB 0B"},F:{"2":"G B C D M N O g h i j k l m n o 2B 3B 4B 5B bB jB 6B cB","129":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","450":"0 1 2 3 4 5 6 7 8 p q r s t u v w x y z"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC","578":"D PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"129":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I YC ZC aC"},Q:{"129":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSSOM Scroll-behavior"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scroll-timeline.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a","194":"b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V","194":"Z a b c S d e H gB qB rB sB","322":"W X Y"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB 2B 3B 4B 5B bB jB 6B cB","194":"XB YB ZB aB P Q R","322":"VB WB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"CSS @scroll-timeline"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-scrollbar.js <del>module.exports={A:{A:{"132":"J E F G A B lB"},B:{"2":"C K L D M N O","292":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB oB pB","3074":"MB","4100":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"292":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"16":"I f tB hB","292":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","292":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"D OC PC","16":"hB 7B kB 8B 9B","292":"AC","804":"F BC CC DC EC FC GC HC IC JC KC LC MC NC"},H:{"2":"QC"},I:{"16":"RC SC","292":"dB I H TC UC kB VC WC"},J:{"292":"E A"},K:{"2":"A B C bB jB cB","292":"T"},L:{"292":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"292":"XC"},P:{"292":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"292":"iC"},R:{"292":"jC"},S:{"2":"kC"}},B:7,C:"CSS scrollbar styling"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel2.js <del>module.exports={A:{A:{"1":"E F G A B","2":"lB","8":"J"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS 2.1 selectors"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sel3.js <del>module.exports={A:{A:{"1":"G A B","2":"lB","8":"J","132":"E F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D hB uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS3 selectors"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-selection.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","33":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"C T jB cB","16":"A B bB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"33":"kC"}},B:5,C:"::selection CSS pseudo-element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-shapes.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB oB pB","322":"CB DB EB FB GB HB IB JB eB KB fB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u","194":"v w x"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB","33":"F G A wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC","33":"F BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:4,C:"CSS Shapes Level 1"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-snappoints.js <del>module.exports={A:{A:{"2":"J E F G lB","6308":"A","6436":"B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","6436":"C K L D M N O"},C:{"1":"QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","2052":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB","8258":"OB PB QB"},E:{"1":"B C K L D bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB","3108":"G A xB iB"},F:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB 2B 3B 4B 5B bB jB 6B cB","8258":"FB GB HB IB JB KB LB MB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC","3108":"CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"iB dC eC fC gC hC","2":"I YC ZC aC bC cC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2052":"kC"}},B:4,C:"CSS Scroll Snap"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-sticky.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"c S d e H","2":"C K L D","1028":"P Q R U V W X Y Z a b","4100":"M N O"},C:{"1":"eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m oB pB","194":"n o p q r s","516":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j y z AB BB CB","322":"k l m n o p q r s t u v w x DB EB FB GB","1028":"HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b"},E:{"1":"K L D yB zB 0B 1B","2":"I f J tB hB uB","33":"F G A B C wB xB iB bB cB","2084":"E vB"},F:{"2":"G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","322":"0 1 2","1028":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"D KC LC MC NC OC PC","2":"hB 7B kB 8B","33":"F BC CC DC EC FC GC HC IC JC","2084":"9B AC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1028":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I YC"},Q:{"1028":"iC"},R:{"2":"jC"},S:{"516":"kC"}},B:5,C:"CSS position:sticky"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-subgrid.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Subgrid"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-supports-api.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","260":"C K L D M N O"},C:{"1":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g oB pB","66":"h i","260":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},D:{"1":"fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o","260":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B","132":"cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"132":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB","132":"cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS.supports() API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-table.js <del>module.exports={A:{A:{"1":"F G A B","2":"J E lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","132":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS Table display"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-align-last.js <del>module.exports={A:{A:{"132":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","4":"C K L D M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B oB pB","33":"0 1 2 3 4 5 6 7 8 9 C K L D M N O g h i j k l m n o p q r s t u v w x y z"},D:{"1":"8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v","322":"0 1 2 3 4 5 6 7 w x y z"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i 2B 3B 4B 5B bB jB 6B cB","578":"j k l m n o p q r s t u"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"2":"iC"},R:{"1":"jC"},S:{"33":"kC"}},B:5,C:"CSS3 text-align-last"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-indent.js <del>module.exports={A:{A:{"132":"J E F G A B lB"},B:{"132":"C K L D M N O","388":"P Q R U V W X Y Z a b c S d e H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"132":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y","388":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"132":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"132":"G B C D M N O g h i j k l 2B 3B 4B 5B bB jB 6B cB","388":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"132":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"132":"QC"},I:{"132":"dB I RC SC TC UC kB VC WC","388":"H"},J:{"132":"E A"},K:{"132":"A B C bB jB cB","388":"T"},L:{"388":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"132":"XC"},P:{"132":"I","388":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"388":"iC"},R:{"388":"jC"},S:{"132":"kC"}},B:5,C:"CSS text-indent"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-justify.js <del>module.exports={A:{A:{"16":"J E lB","132":"F G A B"},B:{"132":"C K L D M N O","322":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB oB pB","1025":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","1602":"FB"},D:{"2":"0 1 2 3 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","322":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C D M N O g h i j k l m n o p q 2B 3B 4B 5B bB jB 6B cB","322":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","322":"H"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","322":"T"},L:{"322":"H"},M:{"1025":"S"},N:{"132":"A B"},O:{"2":"XC"},P:{"2":"I","322":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"322":"iC"},R:{"322":"jC"},S:{"2":"kC"}},B:5,C:"CSS text-justify"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-orientation.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y oB pB","194":"0 1 z"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"L D zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB","16":"A","33":"B C K iB bB cB yB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS text-orientation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-text-spacing.js <del>module.exports={A:{A:{"2":"J E lB","161":"F G A B"},B:{"2":"P Q R U V W X Y Z a b c S d e H","161":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"CSS Text 4 text-spacing"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-textshadow.js <del>module.exports={A:{A:{"2":"J E F G lB","129":"A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","129":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","260":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"4":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"A","4":"E"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"129":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS3 Text-shadow"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action-2.js <del>module.exports={A:{A:{"2":"J E F G lB","132":"B","164":"A"},B:{"1":"P Q R U V W X Y Z a b c S d e H","132":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB","260":"GB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","260":"3"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"132":"B","164":"A"},O:{"2":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","16":"I"},Q:{"2":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"CSS touch-action level 2 values"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-touch-action.js <del>module.exports={A:{A:{"1":"B","2":"J E F G lB","289":"A"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p oB pB","194":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB","1025":"DB EB FB GB HB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC","516":"DC EC FC GC HC IC JC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","289":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"194":"kC"}},B:2,C:"CSS touch-action property"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-transitions.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","33":"f J E F G A B C K L D","164":"I"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"I f J E F G A B C K L D M N O g h i j k l m"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","33":"J uB","164":"I f tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G 2B 3B","33":"C","164":"B 4B 5B bB jB 6B"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","33":"9B","164":"hB 7B kB 8B"},H:{"2":"QC"},I:{"1":"H VC WC","33":"dB I RC SC TC UC kB"},J:{"1":"A","33":"E"},K:{"1":"T cB","33":"C","164":"A B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"CSS3 Transitions"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unicode-bidi.js <del>module.exports={A:{A:{"132":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","132":"C K L D M N O"},C:{"1":"BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","33":"0 1 2 3 4 5 6 7 8 9 N O g h i j k l m n o p q r s t u v w x y z AB","132":"mB dB I f J E F G oB pB","292":"A B C K L D M"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","132":"I f J E F G A B C K L D M","548":"0 1 2 3 4 5 6 7 8 N O g h i j k l m n o p q r s t u v w x y z"},E:{"132":"I f J E F tB hB uB vB wB","548":"G A B C K L D xB iB bB cB yB zB 0B 1B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"132":"F hB 7B kB 8B 9B AC BC","548":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"16":"QC"},I:{"1":"H","16":"dB I RC SC TC UC kB VC WC"},J:{"16":"E A"},K:{"1":"T","16":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"16":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","16":"I"},Q:{"16":"iC"},R:{"16":"jC"},S:{"33":"kC"}},B:4,C:"CSS unicode-bidi property"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-unset-value.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O P Q R U V W X Y Z a b c S d e H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n oB pB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS unset value"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-variables.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"M N O P Q R U V W X Y Z a b c S d e H","2":"C K L","260":"D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r oB pB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","194":"9"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB","260":"xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v 2B 3B 4B 5B bB jB 6B cB","194":"w"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC","260":"DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"2":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:4,C:"CSS Variables (Custom Properties)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-widows-orphans.js <del>module.exports={A:{A:{"1":"A B","2":"J E lB","129":"F G"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l"},E:{"1":"E F G A B C K L D wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB vB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","129":"G B 2B 3B 4B 5B bB jB 6B"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"1":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E A"},K:{"1":"T cB","2":"A B C bB jB"},L:{"1":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:2,C:"CSS widows & orphans"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-writing-mode.js <del>module.exports={A:{A:{"132":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w oB pB","322":"0 1 x y z"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J","16":"E","33":"0 1 2 3 4 5 6 7 8 F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"B C K L D bB cB yB zB 0B 1B","2":"I tB hB","16":"f","33":"J E F G A uB vB wB xB iB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"D M N O g h i j k l m n o p q r s t u v"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB","33":"F 8B 9B AC BC CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"RC SC TC","33":"dB I UC kB VC WC"},J:{"33":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"36":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","33":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS writing-mode property"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css-zoom.js <del>module.exports={A:{A:{"1":"J E lB","129":"F G A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB"},H:{"2":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"129":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:7,C:"CSS zoom"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-attr.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:4,C:"CSS3 attr() function for all properties"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-boxsizing.js <del>module.exports={A:{A:{"1":"F G A B","8":"J E lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","33":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"I f J E F G"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","33":"I f tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","33":"hB 7B kB"},H:{"1":"QC"},I:{"1":"I H UC kB VC WC","33":"dB RC SC TC"},J:{"1":"A","33":"E"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"CSS3 Box-sizing"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-colors.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","4":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 3B 4B 5B bB jB 6B cB","2":"G","4":"2B"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS3 Colors"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-grab.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"D M N O P Q R U V W X Y Z a b c S d e H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","33":"mB dB I f J E F G A B C K L D M N O g h i j k l m n oB pB"},D:{"1":"QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB"},E:{"1":"B C K L D bB cB yB zB 0B 1B","33":"I f J E F G A tB hB uB vB wB xB iB"},F:{"1":"C GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","2":"G B 2B 3B 4B 5B bB jB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"33":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"33":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:3,C:"CSS grab & grabbing cursors"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors-newer.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","33":"mB dB I f J E F G A B C K L D M N O g h i j k oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","33":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","2":"G B 2B 3B 4B 5B bB jB","33":"D M N O g h i j k"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"33":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:4,C:"CSS3 Cursors: zoom-in & zoom-out"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-cursors.js <del>module.exports={A:{A:{"1":"G A B","132":"J E F lB"},B:{"1":"L D M N O P Q R U V W X Y Z a b c S d e H","260":"C K"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","4":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","4":"I"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","4":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","260":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E","16":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:4,C:"CSS3 Cursors (original values)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/css3-tabsize.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"c S d e H gB","2":"mB dB oB pB","33":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b","164":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h","132":"0 1 2 i j k l m n o p q r s t u v w x y z"},E:{"1":"L D yB zB 0B 1B","2":"I f J tB hB uB","132":"E F G A B C K vB wB xB iB bB cB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G 2B 3B 4B","132":"D M N O g h i j k l m n o p","164":"B C 5B bB jB 6B cB"},G:{"1":"D NC OC PC","2":"hB 7B kB 8B 9B","132":"F AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"164":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB","132":"VC WC"},J:{"132":"E A"},K:{"1":"T","2":"A","164":"B C bB jB cB"},L:{"1":"H"},M:{"33":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"164":"kC"}},B:5,C:"CSS3 tab-size"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/currentcolor.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS currentColor value"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elements.js <del>module.exports={A:{A:{"2":"J E F G lB","8":"A B"},B:{"1":"P","2":"Q R U V W X Y Z a b c S d e H","8":"C K L D M N O"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","66":"k l m n o p q","72":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P","2":"I f J E F G A B C K L D M N O g h i j k l m n Q R U V W X Y Z a b c S d e H gB qB rB sB","66":"o p q r s t"},E:{"2":"I f tB hB uB","8":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB","2":"G B C PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","66":"D M N O g"},G:{"2":"hB 7B kB 8B 9B","8":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"WC","2":"dB I H RC SC TC UC kB VC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC","2":"fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"72":"kC"}},B:7,C:"Custom Elements (deprecated V0 spec)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/custom-elementsv1.js <del>module.exports={A:{A:{"2":"J E F G lB","8":"A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","8":"C K L D M N O"},C:{"1":"MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q oB pB","8":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB","456":"BB CB DB EB FB GB HB IB JB","712":"eB KB fB LB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB","8":"DB EB","132":"FB GB HB IB JB eB KB fB LB MB T NB OB"},E:{"2":"I f J E tB hB uB vB wB","8":"F G A xB","132":"B C K L D iB bB cB yB zB 0B 1B"},F:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","132":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC","132":"D FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I","132":"YC"},Q:{"132":"iC"},R:{"132":"jC"},S:{"8":"kC"}},B:1,C:"Custom Elements (V1)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/customevent.js <del>module.exports={A:{A:{"2":"J E F lB","132":"G A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f oB pB","132":"J E F G A"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I","16":"f J E F K L","388":"G A B C"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB","16":"f J","388":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","2":"G 2B 3B 4B 5B","132":"B bB jB"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"7B","16":"hB kB","388":"8B"},H:{"1":"QC"},I:{"1":"H VC WC","2":"RC SC TC","388":"dB I UC kB"},J:{"1":"A","388":"E"},K:{"1":"C T cB","2":"A","132":"B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"CustomEvent"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datalist.js <del>module.exports={A:{A:{"2":"lB","8":"J E F G","260":"A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","260":"C K L D","1284":"M N O"},C:{"8":"mB dB oB pB","4612":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","8":"I f J E F G A B C K L D M N O g","132":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB"},E:{"1":"K L D cB yB zB 0B 1B","8":"I f J E F G A B C tB hB uB vB wB xB iB bB"},F:{"1":"G B C T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","132":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"8":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC","2049":"D JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H WC","8":"dB I RC SC TC UC kB VC"},J:{"1":"A","8":"E"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"516":"S"},N:{"8":"A B"},O:{"8":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"132":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:1,C:"Datalist element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dataset.js <del>module.exports={A:{A:{"1":"B","4":"J E F G A lB"},B:{"1":"C K L D M","129":"N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB","4":"mB dB I f oB pB","129":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"6 7 8 9 AB BB CB DB EB FB","4":"I f J","129":"0 1 2 3 4 5 E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"4":"I f tB hB","129":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 C t u v w x y z bB jB 6B cB","4":"G B 2B 3B 4B 5B","129":"3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"4":"hB 7B kB","129":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"4":"QC"},I:{"4":"RC SC TC","129":"dB I H UC kB VC WC"},J:{"129":"E A"},K:{"1":"C bB jB cB","4":"A B","129":"T"},L:{"129":"H"},M:{"129":"S"},N:{"1":"B","4":"A"},O:{"129":"XC"},P:{"129":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"129":"jC"},S:{"1":"kC"}},B:1,C:"dataset & data-* attributes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/datauri.js <del>module.exports={A:{A:{"2":"J E lB","132":"F","260":"G A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","260":"C K D M N O","772":"L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"Data URIs"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/date-tolocaledatestring.js <del>module.exports={A:{A:{"16":"lB","132":"J E F G A B"},B:{"1":"O P Q R U V W X Y Z a b c S d e H","132":"C K L D M N"},C:{"1":"HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","132":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p oB pB","260":"DB EB FB GB","772":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB"},D:{"1":"SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","132":"I f J E F G A B C K L D M N O g h i j k","260":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB","772":"l m n o p q r s t u v w x y"},E:{"1":"C K L D cB yB zB 0B 1B","16":"I f tB hB","132":"J E F G A uB vB wB xB","260":"B iB bB"},F:{"1":"IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","16":"G B C 2B 3B 4B 5B bB jB 6B","132":"cB","260":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB","772":"D M N O g h i j k l"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB 8B","132":"F 9B AC BC CC DC EC"},H:{"132":"QC"},I:{"1":"H","16":"dB RC SC TC","132":"I UC kB","772":"VC WC"},J:{"132":"E A"},K:{"1":"T","16":"A B C bB jB","132":"cB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"260":"XC"},P:{"1":"cC iB dC eC fC gC hC","260":"I YC ZC aC bC"},Q:{"260":"iC"},R:{"132":"jC"},S:{"132":"kC"}},B:6,C:"Date.prototype.toLocaleDateString"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/decorators.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"Decorators"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/details.js <del>module.exports={A:{A:{"2":"G A B lB","8":"J E F"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB","8":"0 1 2 3 4 5 6 7 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","194":"8 9"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","8":"I f J E F G A B","257":"g h i j k l m n o p q r s t u v w","769":"C K L D M N O"},E:{"1":"C K L D cB yB zB 0B 1B","8":"I f tB hB uB","257":"J E F G A vB wB xB","1025":"B iB bB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"C bB jB 6B cB","8":"G B 2B 3B 4B 5B"},G:{"1":"F D 9B AC BC CC DC HC IC JC KC LC MC NC OC PC","8":"hB 7B kB 8B","1025":"EC FC GC"},H:{"8":"QC"},I:{"1":"I H UC kB VC WC","8":"dB RC SC TC"},J:{"1":"A","8":"E"},K:{"1":"T","8":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"769":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Details & Summary elements"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/deviceorientation.js <del>module.exports={A:{A:{"2":"J E F G A lB","132":"B"},B:{"1":"C K L D M N O","4":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB oB","4":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","8":"I f pB"},D:{"2":"I f J","4":"0 1 2 3 4 5 6 7 8 9 E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","4":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"hB 7B","4":"F D kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"RC SC TC","4":"dB I H UC kB VC WC"},J:{"2":"E","4":"A"},K:{"1":"C cB","2":"A B bB jB","4":"T"},L:{"4":"H"},M:{"4":"S"},N:{"1":"B","2":"A"},O:{"4":"XC"},P:{"4":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"4":"iC"},R:{"4":"jC"},S:{"4":"kC"}},B:4,C:"DeviceOrientation & DeviceMotion events"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/devicepixelratio.js <del>module.exports={A:{A:{"1":"B","2":"J E F G A lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","2":"G B 2B 3B 4B 5B bB jB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"C T cB","2":"A B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"Window.devicePixelRatio"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dialog.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB oB pB","194":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P","1218":"Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s","322":"t u v w x"},E:{"1":"1B","2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O 2B 3B 4B 5B bB jB 6B cB","578":"g h i j k"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:1,C:"Dialog element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dispatchevent.js <del>module.exports={A:{A:{"1":"B","16":"lB","129":"G A","130":"J E F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D hB uB vB wB xB iB bB cB yB zB 0B 1B","16":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","16":"G"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"1":"QC"},I:{"1":"dB I H TC UC kB VC WC","16":"RC SC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","129":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"EventTarget.dispatchEvent"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dnssec.js <del>module.exports={A:{A:{"132":"J E F G A B lB"},B:{"132":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"132":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"132":"0 1 2 3 4 5 6 7 8 9 I f s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","388":"J E F G A B C K L D M N O g h i j k l m n o p q r"},E:{"132":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"132":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"132":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"132":"QC"},I:{"132":"dB I H RC SC TC UC kB VC WC"},J:{"132":"E A"},K:{"132":"A B C T bB jB cB"},L:{"132":"H"},M:{"132":"S"},N:{"132":"A B"},O:{"132":"XC"},P:{"132":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"132":"iC"},R:{"132":"jC"},S:{"132":"kC"}},B:6,C:"DNSSEC and DANE"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/do-not-track.js <del>module.exports={A:{A:{"2":"J E F lB","164":"G A","260":"B"},B:{"1":"N O P Q R U V W X Y Z a b c S d e H","260":"C K L D M"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F oB pB","516":"G A B C K L D M N O g h i j k l m n o p q r s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j"},E:{"1":"J A B C uB xB iB bB","2":"I f K L D tB hB cB yB zB 0B 1B","1028":"E F G vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B 2B 3B 4B 5B bB jB 6B"},G:{"1":"CC DC EC FC GC HC IC","2":"D hB 7B kB 8B 9B JC KC LC MC NC OC PC","1028":"F AC BC"},H:{"1":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"16":"E","1028":"A"},K:{"1":"T cB","16":"A B C bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"164":"A","260":"B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"Do Not Track API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-currentscript.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p"},E:{"1":"F G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"document.currentScript"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-evaluate-xpath.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","16":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","16":"G"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:7,C:"document.evaluate & XPath"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-execcommand.js <del>module.exports={A:{A:{"1":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","16":"I f tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 3B 4B 5B bB jB 6B cB","16":"G 2B"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B","16":"kB 8B 9B"},H:{"2":"QC"},I:{"1":"H UC kB VC WC","2":"dB I RC SC TC"},J:{"1":"A","2":"E"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"2":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:7,C:"Document.execCommand()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-policy.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V","132":"W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V","132":"W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB 2B 3B 4B 5B bB jB 6B cB","132":"TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","132":"H"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","132":"T"},L:{"132":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"Document Policy"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/document-scrollingelement.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"L D M N O P Q R U V W X Y Z a b c S d e H","16":"C K"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"document.scrollingElement"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/documenthead.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB","16":"f"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R bB jB 6B cB","2":"G 2B 3B 4B 5B"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"1":"QC"},I:{"1":"dB I H TC UC kB VC WC","16":"RC SC"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","2":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"document.head"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-manip-convenience.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"N O P Q R U V W X Y Z a b c S d e H","2":"C K L D M"},C:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB","194":"DB EB"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB"},F:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","194":"1"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I YC"},Q:{"194":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:1,C:"DOM manipulation convenience methods"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dom-range.js <del>module.exports={A:{A:{"1":"G A B","2":"lB","8":"J E F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Document Object Model Range"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domcontentloaded.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"DOMContentLoaded"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/domfocusin-domfocusout-events.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L D M N O g h i j k l m"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB","16":"f"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","16":"G B 2B 3B 4B 5B bB jB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB 7B kB 8B 9B"},H:{"16":"QC"},I:{"1":"I H UC kB VC WC","16":"dB RC SC TC"},J:{"16":"E A"},K:{"1":"T","16":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"16":"A B"},O:{"16":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"DOMFocusIn & DOMFocusOut events"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dommatrix.js <del>module.exports={A:{A:{"2":"J E F G lB","132":"A B"},B:{"132":"C K L D M N O","1028":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t oB pB","1028":"RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2564":"0 1 2 3 4 5 6 7 8 9 u v w x y z","3076":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB"},D:{"16":"I f J E","132":"0 1 2 3 4 5 6 7 8 9 G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB","388":"F","1028":"fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"16":"I tB hB","132":"f J E F G A uB vB wB xB iB","1028":"B C K L D bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","132":"0 1 2 3 4 5 6 7 8 D M N O g h i j k l m n o p q r s t u v w x y z","1028":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"16":"hB 7B kB","132":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"132":"I UC kB VC WC","292":"dB RC SC TC","1028":"H"},J:{"16":"E","132":"A"},K:{"2":"A B C bB jB cB","1028":"T"},L:{"1028":"H"},M:{"1028":"S"},N:{"132":"A B"},O:{"132":"XC"},P:{"132":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"132":"iC"},R:{"132":"jC"},S:{"2564":"kC"}},B:4,C:"DOMMatrix"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/download.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O P Q R U V W X Y Z a b c S d e H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Download attribute"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/dragndrop.js <del>module.exports={A:{A:{"644":"J E F G lB","772":"A B"},B:{"1":"O P Q R U V W X Y Z a b c S d e H","260":"C K L D M N"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","8":"mB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","8":"G B 2B 3B 4B 5B bB jB 6B"},G:{"1":"D","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","1025":"H"},J:{"2":"E A"},K:{"1":"cB","8":"A B C bB jB","1025":"T"},L:{"1025":"H"},M:{"2":"S"},N:{"1":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:1,C:"Drag and Drop"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-closest.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"D M N O P Q R U V W X Y Z a b c S d e H","2":"C K L"},C:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v oB pB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"2":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Element.closest()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-from-point.js <del>module.exports={A:{A:{"1":"J E F G A B","16":"lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","16":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","16":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R bB jB 6B cB","16":"G 2B 3B 4B 5B"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"1":"QC"},I:{"1":"dB I H TC UC kB VC WC","16":"RC SC"},J:{"1":"E A"},K:{"1":"C T cB","16":"A B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"document.elementFromPoint()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/element-scroll-methods.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w oB pB"},D:{"1":"fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB"},E:{"1":"L D zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB","132":"A B C K iB bB cB yB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D PC","2":"F hB 7B kB 8B 9B AC BC CC DC","132":"EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I YC ZC aC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:5,C:"Scroll methods on elements (scroll, scrollTo, scrollBy)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eme.js <del>module.exports={A:{A:{"2":"J E F G A lB","164":"B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y oB pB"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v","132":"0 1 2 w x y z"},E:{"1":"C K L D cB yB zB 0B 1B","2":"I f J tB hB uB vB","164":"E F G A B wB xB iB bB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i 2B 3B 4B 5B bB jB 6B cB","132":"j k l m n o p"},G:{"1":"D HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"16":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:2,C:"Encrypted Media Extensions"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eot.js <del>module.exports={A:{A:{"1":"J E F G A B","2":"lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"EOT - Embedded OpenType fonts"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es5.js <del>module.exports={A:{A:{"1":"A B","2":"J E lB","260":"G","1026":"F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","4":"mB dB oB pB","132":"I f J E F G A B C K L D M N O g h"},D:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","4":"I f J E F G A B C K L D M N O","132":"g h i j"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","4":"I f tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","4":"G B C 2B 3B 4B 5B bB jB 6B","132":"cB"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","4":"hB 7B kB 8B"},H:{"132":"QC"},I:{"1":"H VC WC","4":"dB RC SC TC","132":"UC kB","900":"I"},J:{"1":"A","4":"E"},K:{"1":"T","4":"A B C bB jB","132":"cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"ECMAScript 5"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-class.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O P Q R U V W X Y Z a b c S d e H","2":"C"},C:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","132":"3 4 5 6 7 8 9"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p 2B 3B 4B 5B bB jB 6B cB","132":"q r s t u v w"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"ES6 classes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-generators.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"K L D M N O P Q R U V W X Y Z a b c S d e H","2":"C"},C:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"ES6 Generators"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module-dynamic-import.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB oB pB","194":"OB"},D:{"1":"MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB"},E:{"1":"C K L D bB cB yB zB 0B 1B","2":"I f J E F G A B tB hB uB vB wB xB iB"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I YC ZC aC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"JavaScript modules: dynamic import()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-module.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L","4097":"M N O","4290":"D"},C:{"1":"KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB oB pB","322":"FB GB HB IB JB eB"},D:{"1":"fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB","194":"KB"},E:{"1":"B C K L D bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB","3076":"iB"},F:{"1":"9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","194":"8"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC","3076":"FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","2":"I YC ZC aC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:1,C:"JavaScript modules via script tag"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-number.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D oB pB","132":"M N O g h i j k l","260":"m n o p q r","516":"s"},D:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O","1028":"g h i j k l m n o p q r s t u"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","1028":"D M N O g h"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC","1028":"UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"ES6 Number"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6-string-includes.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"String.prototype.includes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/es6.js <del>module.exports={A:{A:{"2":"J E F G A lB","388":"B"},B:{"257":"P Q R U V W X Y Z a b c S d e H","260":"C K L","769":"D M N O"},C:{"2":"mB dB I f oB pB","4":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB","257":"FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"I f J E F G A B C K L D M N O g h","4":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB","257":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB","4":"F G wB xB"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","4":"D M N O g h i j k l m n o p q r s t u v w x y","257":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B","4":"F AC BC CC DC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB","4":"VC WC","257":"H"},J:{"2":"E","4":"A"},K:{"2":"A B C bB jB cB","257":"T"},L:{"257":"H"},M:{"257":"S"},N:{"2":"A","388":"B"},O:{"257":"XC"},P:{"4":"I","257":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"257":"iC"},R:{"4":"jC"},S:{"4":"kC"}},B:6,C:"ECMAScript 2015 (ES6)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/eventsource.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R bB jB 6B cB","4":"G 2B 3B 4B 5B"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"E A"},K:{"1":"C T bB jB cB","4":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Server-sent events"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/extended-system-fonts.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"L D yB zB 0B 1B","2":"I f J E F G A B C K tB hB uB vB wB xB iB bB cB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"ui-serif, ui-sans-serif, ui-monospace and ui-rounded values for font-family"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/feature-policy.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y","2":"C K L D M N O","1025":"Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB oB pB","260":"WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"WB XB YB ZB aB P Q R U V W X Y","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB","132":"KB fB LB MB T NB OB PB QB RB SB TB UB VB","1025":"Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B tB hB uB vB wB xB iB","772":"C K L D bB cB yB zB 0B 1B"},F:{"1":"LB MB T NB OB PB QB RB SB TB UB VB WB","2":"0 1 2 3 4 5 6 7 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","132":"8 9 AB BB CB DB EB FB GB HB IB JB KB","1025":"XB YB ZB aB P Q R"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC","772":"D HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1025":"H"},M:{"260":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"dC eC fC gC hC","2":"I YC ZC aC","132":"bC cC iB"},Q:{"132":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"Feature Policy"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fetch.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"L D M N O P Q R U V W X Y Z a b c S d e H","2":"C K"},C:{"1":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u oB pB","1025":"0","1218":"v w x y z"},D:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","260":"1","772":"2"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n 2B 3B 4B 5B bB jB 6B cB","260":"o","772":"p"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Fetch"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fieldset-disabled.js <del>module.exports={A:{A:{"16":"lB","132":"F G","388":"J E A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D","16":"M N O g"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 3B 4B 5B bB jB 6B cB","16":"G 2B"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B"},H:{"388":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A","260":"B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"disabled attribute of the fieldset element"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fileapi.js <del>module.exports={A:{A:{"2":"J E F G lB","260":"A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","260":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB","260":"I f J E F G A B C K L D M N O g h i j k l m n o pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f","260":"K L D M N O g h i j k l m n o p q r s t u v w x y","388":"J E F G A B C"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f tB hB","260":"J E F G vB wB xB","388":"uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B 2B 3B 4B 5B","260":"C D M N O g h i j k l bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B","260":"F 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H WC","2":"RC SC TC","260":"VC","388":"dB I UC kB"},J:{"260":"A","388":"E"},K:{"1":"T","2":"A B","260":"C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","260":"B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"File API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereader.js <del>module.exports={A:{A:{"2":"J E F G lB","132":"A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB pB","2":"mB dB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R bB jB 6B cB","2":"G B 2B 3B 4B 5B"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B"},H:{"2":"QC"},I:{"1":"dB I H UC kB VC WC","2":"RC SC TC"},J:{"1":"A","2":"E"},K:{"1":"C T bB jB cB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"FileReader API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filereadersync.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","2":"G 2B 3B","16":"B 4B 5B bB jB"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"C T jB cB","2":"A","16":"B bB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"FileReaderSync"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/filesystem.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","33":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"I f J E","33":"0 1 2 3 4 5 6 7 8 9 K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","36":"F G A B C"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E","33":"A"},K:{"2":"A B C T bB jB cB"},L:{"33":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I","33":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"Filesystem & FileWriter API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flac.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"M N O P Q R U V W X Y Z a b c S d e H","2":"C K L D"},C:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB oB pB"},D:{"1":"HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","16":"5 6 7","388":"8 9 AB BB CB DB EB FB GB"},E:{"1":"K L D yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB iB","516":"B C bB cB"},F:{"1":"3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"RC SC TC","16":"dB I UC kB VC WC"},J:{"1":"A","2":"E"},K:{"1":"T cB","16":"A B C bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","129":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:6,C:"FLAC audio format"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox-gap.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"V W X Y Z a b c S d e H","2":"C K L D M N O P Q R U"},C:{"1":"MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB oB pB"},D:{"1":"V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U"},E:{"1":"D zB 0B 1B","2":"I f J E F G A B C K L tB hB uB vB wB xB iB bB cB yB"},F:{"1":"VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"gap property for Flexbox"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flexbox.js <del>module.exports={A:{A:{"2":"J E F G lB","1028":"B","1316":"A"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","164":"mB dB I f J E F G A B C K L D M N O g h i oB pB","516":"j k l m n o"},D:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","33":"i j k l m n o p","164":"I f J E F G A B C K L D M N O g h"},E:{"1":"G A B C K L D xB iB bB cB yB zB 0B 1B","33":"E F vB wB","164":"I f J tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B C 2B 3B 4B 5B bB jB 6B","33":"D M"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","33":"F AC BC","164":"hB 7B kB 8B 9B"},H:{"1":"QC"},I:{"1":"H VC WC","164":"dB I RC SC TC UC kB"},J:{"1":"A","164":"E"},K:{"1":"T cB","2":"A B C bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","292":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS Flexible Box Layout Module"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/flow-root.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB oB pB"},D:{"1":"JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB"},E:{"1":"K L D yB zB 0B 1B","2":"I f J E F G A B C tB hB uB vB wB xB iB bB cB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","2":"I YC ZC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"display: flow-root"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusin-focusout-events.js <del>module.exports={A:{A:{"1":"J E F G A B","2":"lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","16":"I f tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","2":"G 2B 3B 4B 5B","16":"B bB jB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB"},H:{"2":"QC"},I:{"1":"I H UC kB VC WC","2":"RC SC TC","16":"dB"},J:{"1":"E A"},K:{"1":"C T cB","2":"A","16":"B bB jB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"focusin & focusout events"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/focusoptions-preventscroll.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M","132":"N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:1,C:"preventScroll support in focus"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-family-system-ui.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"S d e H gB","2":"0 1 2 3 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","132":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c"},D:{"1":"HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB","260":"EB FB GB"},E:{"1":"B C K L D bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB","16":"G","132":"A xB iB"},F:{"1":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC","132":"CC DC EC FC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I YC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"132":"kC"}},B:5,C:"system-ui value for font-family"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-feature.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","33":"D M N O g h i j k l m n o p q r s t u","164":"I f J E F G A B C K L"},D:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D","33":"0 1 2 3 4 5 6 7 8 i j k l m n o p q r s t u v w x y z","292":"M N O g h"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"E F G tB hB vB wB","4":"I f J uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","33":"D M N O g h i j k l m n o p q r s t u v"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F AC BC CC","4":"hB 7B kB 8B 9B"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB","33":"VC WC"},J:{"2":"E","33":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","33":"I"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS font-feature-settings"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-kerning.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k oB pB","194":"l m n o p q r s t u"},D:{"1":"0 1 2 3 4 5 6 7 8 9 u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p","33":"q r s t"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB vB","33":"E F G wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D 2B 3B 4B 5B bB jB 6B cB","33":"M N O g"},G:{"1":"D IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC","33":"F BC CC DC EC FC GC HC"},H:{"2":"QC"},I:{"1":"H WC","2":"dB I RC SC TC UC kB","33":"VC"},J:{"2":"E","33":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"CSS3 font-kerning"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-loading.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v oB pB","194":"0 1 w x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"CSS Font Loading"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-metrics-overrides.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W","194":"X"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"@font-face metrics overrides"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-size-adjust.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","194":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB"},D:{"2":"0 1 2 3 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","194":"4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C D M N O g h i j k l m n o p q 2B 3B 4B 5B bB jB 6B cB","194":"0 1 2 3 4 5 6 7 8 9 r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"258":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"194":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:4,C:"CSS font-size-adjust"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-smooth.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","676":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j k l oB pB","804":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"I","676":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"tB hB","676":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","676":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"804":"kC"}},B:7,C:"CSS font-smooth"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-unicode-range.js <del>module.exports={A:{A:{"2":"J E F lB","4":"G A B"},B:{"1":"N O P Q R U V W X Y Z a b c S d e H","4":"C K L D M"},C:{"1":"5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w oB pB","194":"0 1 2 3 4 x y z"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","4":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w"},E:{"1":"A B C K L D iB bB cB yB zB 0B 1B","4":"I f J E F G tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB","4":"D M N O g h i j"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC PC","4":"F hB 7B kB 8B 9B AC BC CC DC"},H:{"2":"QC"},I:{"1":"H","4":"dB I RC SC TC UC kB VC WC"},J:{"2":"E","4":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"4":"A B"},O:{"1":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","4":"I"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:4,C:"Font unicode-range subsetting"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-alternates.js <del>module.exports={A:{A:{"2":"J E F G lB","130":"A B"},B:{"130":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","130":"I f J E F G A B C K L D M N O g h i j k","322":"l m n o p q r s t u"},D:{"2":"I f J E F G A B C K L D","130":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"E F G tB hB vB wB","130":"I f J uB"},F:{"2":"G B C 2B 3B 4B 5B bB jB 6B cB","130":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB AC BC CC","130":"7B kB 8B 9B"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB","130":"H VC WC"},J:{"2":"E","130":"A"},K:{"2":"A B C bB jB cB","130":"T"},L:{"130":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"130":"XC"},P:{"130":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"130":"iC"},R:{"130":"jC"},S:{"1":"kC"}},B:5,C:"CSS font-variant-alternates"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-east-asian.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k oB pB","132":"l m n o p q r s t u"},D:{"1":"MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"132":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:4,C:"CSS font-variant-east-asian "}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/font-variant-numeric.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u oB pB"},D:{"1":"DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB"},E:{"1":"A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E F G tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E","16":"A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"ZC aC bC cC iB dC eC fC gC hC","2":"I YC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"1":"kC"}},B:2,C:"CSS font-variant-numeric"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fontface.js <del>module.exports={A:{A:{"1":"G A B","132":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","2":"mB dB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D hB uB vB wB xB iB bB cB yB zB 0B 1B","2":"tB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 3B 4B 5B bB jB 6B cB","2":"G 2B"},G:{"1":"F D kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","260":"hB 7B"},H:{"2":"QC"},I:{"1":"I H UC kB VC WC","2":"RC","4":"dB SC TC"},J:{"1":"A","4":"E"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:4,C:"@font-face Web fonts"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-attribute.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"M N O P Q R U V W X Y Z a b c S d e H","2":"C K L D"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB","16":"f"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB"},H:{"1":"QC"},I:{"1":"dB I H UC kB VC WC","2":"RC SC TC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Form attribute"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-submit-attributes.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","16":"I f J E F G A B C K L"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 5B bB jB 6B cB","2":"G 2B","16":"3B 4B"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB"},H:{"1":"QC"},I:{"1":"I H UC kB VC WC","2":"RC SC TC","16":"dB"},J:{"1":"A","2":"E"},K:{"1":"B C T bB jB cB","16":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Attributes for form submission"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/form-validation.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I tB hB","132":"f J E F G A uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 3B 4B 5B bB jB 6B cB","2":"G 2B"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"hB","132":"F 7B kB 8B 9B AC BC CC DC EC"},H:{"516":"QC"},I:{"1":"H WC","2":"dB RC SC TC","132":"I UC kB VC"},J:{"1":"A","132":"E"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"132":"kC"}},B:1,C:"Form validation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/forms.js <del>module.exports={A:{A:{"2":"lB","4":"A B","8":"J E F G"},B:{"1":"M N O P Q R U V W X Y Z a b c S d e H","4":"C K L D"},C:{"4":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","8":"mB dB oB pB"},D:{"1":"fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","4":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB"},E:{"4":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","8":"tB hB"},F:{"1":"G B C DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","4":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB"},G:{"2":"hB","4":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB","4":"VC WC"},J:{"2":"E","4":"A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"4":"S"},N:{"4":"A B"},O:{"1":"XC"},P:{"1":"bC cC iB dC eC fC gC hC","4":"I YC ZC aC"},Q:{"1":"iC"},R:{"4":"jC"},S:{"4":"kC"}},B:1,C:"HTML5 form features"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/fullscreen.js <del>module.exports={A:{A:{"2":"J E F G A lB","548":"B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","516":"C K L D M N O"},C:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G oB pB","676":"0 1 2 3 4 5 6 7 A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","1700":"8 9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB"},D:{"1":"TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L","676":"D M N O g","804":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB"},E:{"2":"I f tB hB","676":"uB","804":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R cB","2":"G B C 2B 3B 4B 5B bB jB 6B","804":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC","2052":"IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E","292":"A"},K:{"2":"A B C T bB jB cB"},L:{"804":"H"},M:{"1":"S"},N:{"2":"A","548":"B"},O:{"804":"XC"},P:{"1":"iB dC eC fC gC hC","804":"I YC ZC aC bC cC"},Q:{"804":"iC"},R:{"804":"jC"},S:{"1":"kC"}},B:1,C:"Full Screen API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gamepad.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h","33":"i j k l"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:5,C:"Gamepad API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/geolocation.js <del>module.exports={A:{A:{"1":"G A B","2":"lB","8":"J E F"},B:{"1":"C K L D M N O","129":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB oB pB","8":"mB dB","129":"GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB","4":"I","129":"BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"f J E F G B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","8":"I tB hB","129":"A"},F:{"1":"B C M N O g h i j k l m n o p q r s t u v w x y z 5B bB jB 6B cB","2":"G D 2B","8":"3B 4B","129":"0 1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"F hB 7B kB 8B 9B AC BC CC DC","129":"D EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"dB I RC SC TC UC kB VC WC","129":"H"},J:{"1":"E A"},K:{"1":"B C bB jB cB","8":"A","129":"T"},L:{"129":"H"},M:{"129":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I","129":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"129":"iC"},R:{"129":"jC"},S:{"1":"kC"}},B:2,C:"Geolocation"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getboundingclientrect.js <del>module.exports={A:{A:{"644":"J E lB","2049":"G A B","2692":"F"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2049":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB","260":"I f J E F G A B","1156":"dB","1284":"oB","1796":"pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","16":"tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 5B bB jB 6B cB","16":"G 2B","132":"3B 4B"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","16":"hB"},H:{"1":"QC"},I:{"1":"dB I H TC UC kB VC WC","16":"RC SC"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","132":"A"},L:{"1":"H"},M:{"1":"S"},N:{"2049":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"Element.getBoundingClientRect()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getcomputedstyle.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB","132":"dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","260":"I f J E F G A"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","260":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 5B bB jB 6B cB","260":"G 2B 3B 4B"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","260":"hB 7B kB"},H:{"260":"QC"},I:{"1":"I H UC kB VC WC","260":"dB RC SC TC"},J:{"1":"A","260":"E"},K:{"1":"B C T bB jB cB","260":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"getComputedStyle"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getelementsbyclassname.js <del>module.exports={A:{A:{"1":"G A B","2":"lB","8":"J E F"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","8":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","2":"G"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"getElementsByClassName"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/getrandomvalues.js <del>module.exports={A:{A:{"2":"J E F G A lB","33":"B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M N O g h oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f J tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A","33":"B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"crypto.getRandomValues()"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/gyroscope.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB","194":"JB eB KB fB LB MB T NB OB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:4,C:"Gyroscope"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hardwareconcurrency.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"D M N O P Q R U V W X Y Z a b c S d e H","2":"C K L"},C:{"1":"9 AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x"},E:{"2":"I f J E tB hB uB vB wB","129":"B C K L D iB bB cB yB zB 0B 1B","194":"F G A xB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"hB 7B kB 8B 9B AC","129":"D FC GC HC IC JC KC LC MC NC OC PC","194":"F BC CC DC EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"navigator.hardwareConcurrency"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hashchange.js <del>module.exports={A:{A:{"1":"F G A B","8":"J E lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB pB","8":"mB dB oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","8":"I"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","8":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 5B bB jB 6B cB","8":"G 2B 3B 4B"},G:{"1":"F D 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB"},H:{"2":"QC"},I:{"1":"dB I H SC TC UC kB VC WC","2":"RC"},J:{"1":"E A"},K:{"1":"B C T bB jB cB","8":"A"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Hashchange event"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/heif.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A tB hB uB vB wB xB iB","130":"B C K L D bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC FC","130":"D GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"HEIF/ISO Base Media File Format"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hevc.js <del>module.exports={A:{A:{"2":"J E F G A lB","132":"B"},B:{"2":"P Q R U V W X Y Z a b c S d e H","132":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"K L D yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB iB","516":"B C bB cB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"D GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","258":"H"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","258":"T"},L:{"258":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I","258":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"HEVC/H.265 video format"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/hidden.js <del>module.exports={A:{A:{"1":"B","2":"J E F G A lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f"},E:{"1":"J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R bB jB 6B cB","2":"G B 2B 3B 4B 5B"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB"},H:{"1":"QC"},I:{"1":"I H UC kB VC WC","2":"dB RC SC TC"},J:{"1":"A","2":"E"},K:{"1":"C T bB jB cB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"B","2":"A"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"hidden attribute"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/high-resolution-time.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g","33":"h i j k"},E:{"1":"F G A B C K L D xB iB bB cB yB zB 0B 1B","2":"I f J E tB hB uB vB wB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"High Resolution Time API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/history.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB","4":"f uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R jB 6B cB","2":"G B 2B 3B 4B 5B bB"},G:{"1":"F D 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B","4":"kB"},H:{"2":"QC"},I:{"1":"H SC TC kB VC WC","2":"dB I RC UC"},J:{"1":"E A"},K:{"1":"C T bB jB cB","2":"A B"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"Session history management"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html-media-capture.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"hB 7B kB 8B","129":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"dB I H UC kB VC WC","2":"RC","257":"SC TC"},J:{"1":"A","16":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"516":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"16":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:4,C:"HTML Media Capture"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/html5semantic.js <del>module.exports={A:{A:{"2":"lB","8":"J E F","260":"G A B"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB","132":"dB oB pB","260":"I f J E F G A B C K L D M N O g h"},D:{"1":"0 1 2 3 4 5 6 7 8 9 n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","132":"I f","260":"J E F G A B C K L D M N O g h i j k l m"},E:{"1":"E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","132":"I tB hB","260":"f J uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","132":"G B 2B 3B 4B 5B","260":"C bB jB 6B cB"},G:{"1":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","132":"hB","260":"7B kB 8B 9B"},H:{"132":"QC"},I:{"1":"H VC WC","132":"RC","260":"dB I SC TC UC kB"},J:{"260":"E A"},K:{"1":"T","132":"A","260":"B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"260":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"HTML5 semantic elements"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http-live-streaming.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"C K L D M N O","2":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"dB I H UC kB VC WC","2":"RC SC TC"},J:{"1":"A","2":"E"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"2":"kC"}},B:7,C:"HTTP Live Streaming (HLS)"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http2.js <del>module.exports={A:{A:{"2":"J E F G A lB","132":"B"},B:{"1":"C K L D M N O","513":"P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB","2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w oB pB","513":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"1":"2 3 4 5 6 7 8 9 AB BB","2":"0 1 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","513":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"B C K L D bB cB yB zB 0B 1B","2":"I f J E F tB hB uB vB wB","260":"G A xB iB"},F:{"1":"p q r s t u v w x y","2":"G B C D M N O g h i j k l m n o 2B 3B 4B 5B bB jB 6B cB","513":"0 1 2 3 4 5 6 7 8 9 z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"1":"D CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC"},H:{"2":"QC"},I:{"2":"dB I RC SC TC UC kB VC WC","513":"H"},J:{"2":"E A"},K:{"2":"A B C bB jB cB","513":"T"},L:{"513":"H"},M:{"513":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I","513":"YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"513":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:6,C:"HTTP/2 protocol"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/http3.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"Y Z a b c S d e H","2":"C K L D M N O","322":"P Q R U V","578":"W X"},C:{"1":"Z a b c S d e H gB","2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB oB pB","194":"UB VB WB XB YB ZB aB P Q R nB U V W X Y"},D:{"1":"Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB","322":"P Q R U V","578":"W X"},E:{"2":"I f J E F G A B C K tB hB uB vB wB xB iB bB cB yB","1090":"L D zB 0B 1B"},F:{"1":"WB XB YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB 2B 3B 4B 5B bB jB 6B cB","578":"VB"},G:{"2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC","66":"D OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"194":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"gC hC","2":"I YC ZC aC bC cC iB dC eC fC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:6,C:"HTTP/3 protocol"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-sandbox.js <del>module.exports={A:{A:{"1":"A B","2":"J E F G lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB I f J E F G A B C K L D M oB pB","4":"N O g h i j k l m n o"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"f J E F G A B C K L D uB vB wB xB iB bB cB yB zB 0B 1B","2":"I tB hB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB 7B"},H:{"2":"QC"},I:{"1":"dB I H SC TC UC kB VC WC","2":"RC"},J:{"1":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"sandbox attribute for iframes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-seamless.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","66":"h i j k l m n"},E:{"2":"I f J F G A B C K L D tB hB uB vB xB iB bB cB yB zB 0B 1B","130":"E wB"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","130":"AC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"seamless attribute for iframes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/iframe-srcdoc.js <del>module.exports={A:{A:{"2":"lB","8":"J E F G A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","8":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB","8":"dB I f J E F G A B C K L D M N O g h i j k l oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K","8":"L D M N O g"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"tB hB","8":"I f uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B 2B 3B 4B 5B","8":"C bB jB 6B cB"},G:{"1":"F D 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC","2":"hB","8":"7B kB 8B"},H:{"2":"QC"},I:{"1":"H VC WC","8":"dB I RC SC TC UC kB"},J:{"1":"A","8":"E"},K:{"1":"T","2":"A B","8":"C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"8":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"srcdoc attribute for iframes"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imagecapture.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"2":"C K L D M N O","322":"P Q R U V W X Y Z a b c S d e H"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v oB pB","194":"0 1 2 3 4 5 6 7 8 9 w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB","322":"EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 G B C D M N O g h i j k l m n o p q r s t u v w x y z 2B 3B 4B 5B bB jB 6B cB","322":"1 2 3 4 5 6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"YC ZC aC bC cC iB dC eC fC gC hC","2":"I"},Q:{"322":"iC"},R:{"1":"jC"},S:{"194":"kC"}},B:5,C:"ImageCapture API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/ime.js <del>module.exports={A:{A:{"2":"J E F G A lB","161":"B"},B:{"2":"P Q R U V W X Y Z a b c S d e H","161":"C K L D M N O"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"2":"S"},N:{"2":"A","161":"B"},O:{"2":"XC"},P:{"2":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:5,C:"Input Method Editor API"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/img-naturalwidth-naturalheight.js <del>module.exports={A:{A:{"1":"G A B","2":"J E F lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"naturalWidth & naturalHeight image properties"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/import-maps.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"a b c S d e H","2":"C K L D M N O","194":"P Q R U V W X Y Z"},C:{"2":"0 1 2 3 4 5 6 7 8 9 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB"},D:{"1":"a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB","194":"WB XB YB ZB aB P Q R U V W X Y Z"},E:{"2":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"YB ZB aB P Q R","2":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB 2B 3B 4B 5B bB jB 6B cB","194":"LB MB T NB OB PB QB RB SB TB UB VB WB XB"},G:{"2":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"2":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"hC","2":"I YC ZC aC bC cC iB dC eC fC gC"},Q:{"2":"iC"},R:{"2":"jC"},S:{"2":"kC"}},B:7,C:"Import maps"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/imports.js <del>module.exports={A:{A:{"2":"J E F G lB","8":"A B"},B:{"1":"P","2":"Q R U V W X Y Z a b c S d e H","8":"C K L D M N O"},C:{"2":"mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q oB pB","8":"r s HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","72":"0 1 2 3 4 5 6 7 8 9 t u v w x y z AB BB CB DB EB FB GB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P","2":"I f J E F G A B C K L D M N O g h i j k l m n o p q Q R U V W X Y Z a b c S d e H gB qB rB sB","66":"r s t u v","72":"w"},E:{"2":"I f tB hB uB","8":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB","2":"G B C D M PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB","66":"N O g h i","72":"j"},G:{"2":"hB 7B kB 8B 9B","8":"F D AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"2":"QC"},I:{"2":"dB I H RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"2":"A B C T bB jB cB"},L:{"2":"H"},M:{"8":"S"},N:{"2":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC","2":"fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:5,C:"HTML Imports"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indeterminate-checkbox.js <del>module.exports={A:{A:{"1":"J E F G A B","16":"lB"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB pB","2":"mB dB","16":"oB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"I f J E F G A B C K L D M N O g h i j k l m n o"},E:{"1":"J E F G A B C K L D vB wB xB iB bB cB yB zB 0B 1B","2":"I f tB hB uB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 6B cB","2":"G B 2B 3B 4B 5B bB jB"},G:{"1":"D JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC"},H:{"2":"QC"},I:{"1":"H VC WC","2":"dB I RC SC TC UC kB"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"2":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:1,C:"indeterminate checkbox"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb.js <del>module.exports={A:{A:{"2":"J E F G lB","132":"A B"},B:{"1":"P Q R U V W X Y Z a b c S d e H","132":"C K L D M N O"},C:{"1":"0 1 2 3 4 5 6 7 8 9 M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"mB dB oB pB","33":"A B C K L D","36":"I f J E F G"},D:{"1":"0 1 2 3 4 5 6 7 8 9 l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"A","8":"I f J E F G","33":"k","36":"B C K L D M N O g h i j"},E:{"1":"A B C K L D iB bB cB yB 0B 1B","8":"I f J E tB hB uB vB","260":"F G wB xB","516":"zB"},F:{"1":"0 1 2 3 4 5 6 7 8 9 D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G 2B 3B","8":"B C 4B 5B bB jB 6B cB"},G:{"1":"D EC FC GC HC IC JC KC LC MC NC OC","8":"hB 7B kB 8B 9B AC","260":"F BC CC DC","516":"PC"},H:{"2":"QC"},I:{"1":"H VC WC","8":"dB I RC SC TC UC kB"},J:{"1":"A","8":"E"},K:{"1":"T","2":"A","8":"B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"132":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"IndexedDB"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/indexeddb2.js <del>module.exports={A:{A:{"2":"J E F G A B lB"},B:{"1":"P Q R U V W X Y Z a b c S d e H","2":"C K L D M N O"},C:{"1":"CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB","2":"0 1 2 3 4 mB dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z oB pB","132":"5 6 7","260":"8 9 AB BB"},D:{"1":"JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB","2":"0 1 2 3 4 5 6 7 8 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z","132":"9 AB BB CB","260":"DB EB FB GB HB IB"},E:{"1":"B C K L D iB bB cB yB zB 0B 1B","2":"I f J E F G A tB hB uB vB wB xB"},F:{"1":"6 7 8 9 AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R","2":"G B C D M N O g h i j k l m n o p q r s t u v 2B 3B 4B 5B bB jB 6B cB","132":"w x y z","260":"0 1 2 3 4 5"},G:{"1":"D FC GC HC IC JC KC LC MC NC OC PC","2":"F hB 7B kB 8B 9B AC BC CC DC","16":"EC"},H:{"2":"QC"},I:{"1":"H","2":"dB I RC SC TC UC kB VC WC"},J:{"2":"E A"},K:{"1":"T","2":"A B C bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"2":"A B"},O:{"2":"XC"},P:{"1":"aC bC cC iB dC eC fC gC hC","2":"I","260":"YC ZC"},Q:{"1":"iC"},R:{"2":"jC"},S:{"260":"kC"}},B:4,C:"IndexedDB 2.0"}; <ide><path>tools/node_modules/@babel/core/node_modules/caniuse-lite/data/features/inline-block.js <del>module.exports={A:{A:{"1":"F G A B","4":"lB","132":"J E"},B:{"1":"C K L D M N O P Q R U V W X Y Z a b c S d e H"},C:{"1":"0 1 2 3 4 5 6 7 8 9 dB I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R nB U V W X Y Z a b c S d e H gB oB pB","36":"mB"},D:{"1":"0 1 2 3 4 5 6 7 8 9 I f J E F G A B C K L D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB eB KB fB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R U V W X Y Z a b c S d e H gB qB rB sB"},E:{"1":"I f J E F G A B C K L D tB hB uB vB wB xB iB bB cB yB zB 0B 1B"},F:{"1":"0 1 2 3 4 5 6 7 8 9 G B C D M N O g h i j k l m n o p q r s t u v w x y z AB BB CB DB EB FB GB HB IB JB KB LB MB T NB OB PB QB RB SB TB UB VB WB XB YB ZB aB P Q R 2B 3B 4B 5B bB jB 6B cB"},G:{"1":"F D hB 7B kB 8B 9B AC BC CC DC EC FC GC HC IC JC KC LC MC NC OC PC"},H:{"1":"QC"},I:{"1":"dB I H RC SC TC UC kB VC WC"},J:{"1":"E A"},K:{"1":"A B C T bB jB cB"},L:{"1":"H"},M:{"1":"S"},N:{"1":"A B"},O:{"1":"XC"},P:{"1":"I YC ZC aC bC cC iB dC eC fC gC hC"},Q:{"1":"iC"},R:{"1":"jC"},S:{"1":"kC"}},B:2,C:"CSS inline-block"};
300
Javascript
Javascript
test deep path for profilingplugin
373d5133bf15c7d69eb5ec18423bf25ce5db8cd5
<ide><path>test/configCases/plugins/profiling-plugin/index.js <ide> import "./test.json"; <ide> <ide> it("should generate a events.json file", () => { <del> var fs = require("fs"), <del> path = require("path"), <del> os = require("os"); <add> var fs = require("fs"); <add> var path = require("path"); <ide> <del> expect(fs.existsSync(path.join(__dirname, "events.json"))).toBe(true); <add> expect(fs.existsSync(path.join(__dirname, "in/directory/events.json"))).toBe( <add> true <add> ); <ide> }); <ide> <ide> it("should have proper setup record inside of the json stream", () => { <del> var fs = require("fs"), <del> path = require("path"), <del> os = require("os"); <add> var fs = require("fs"); <add> var path = require("path"); <ide> <del> // convert json stream to valid <ide> var source = JSON.parse( <del> fs.readFileSync(path.join(__dirname, "events.json"), "utf-8") <add> fs.readFileSync(path.join(__dirname, "in/directory/events.json"), "utf-8") <ide> ); <ide> expect(source[0].id).toEqual(1); <ide> }); <ide><path>test/configCases/plugins/profiling-plugin/webpack.config.js <ide> var path = require("path"); <ide> module.exports = (env, { testPath }) => ({ <ide> plugins: [ <ide> new webpack.debug.ProfilingPlugin({ <del> outputPath: path.join(testPath, "events.json") <add> outputPath: path.join(testPath, "in/directory/events.json") <ide> }) <ide> ], <ide> node: {
2
Text
Text
add license file to each component
19d771c8f7c9616b58b0feca9824308ddf62b444
<ide><path>src/Illuminate/Auth/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Broadcasting/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Bus/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Cache/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Config/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Console/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Container/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Contracts/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Cookie/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Database/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Encryption/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Events/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Filesystem/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Hashing/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Http/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Log/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Mail/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Notifications/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Pagination/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Pipeline/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Queue/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Redis/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Routing/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Session/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Support/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Translation/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/Validation/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE. <ide><path>src/Illuminate/View/LICENSE.md <add>The MIT License (MIT) <add> <add>Copyright (c) Taylor Otwell <add> <add>Permission is hereby granted, free of charge, to any person obtaining a copy <add>of this software and associated documentation files (the "Software"), to deal <add>in the Software without restriction, including without limitation the rights <add>to use, copy, modify, merge, publish, distribute, sublicense, and/or sell <add>copies of the Software, and to permit persons to whom the Software is <add>furnished to do so, subject to the following conditions: <add> <add>The above copyright notice and this permission notice shall be included in <add>all copies or substantial portions of the Software. <add> <add>THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR <add>IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, <add>FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE <add>AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER <add>LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, <add>OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN <add>THE SOFTWARE.
28
Go
Go
add newlines to the json stream functions
060da572d20dfeee4fe02ce6b975a6cb33e50dbe
<ide><path>utils/streamformatter.go <ide> func NewStreamFormatter(json bool) *StreamFormatter { <ide> return &StreamFormatter{json, false} <ide> } <ide> <add>const streamNewline = "\r\n" <add> <add>var streamNewlineBytes = []byte(streamNewline) <add> <ide> func (sf *StreamFormatter) FormatStream(str string) []byte { <ide> sf.used = true <ide> if sf.json { <ide> b, err := json.Marshal(&JSONMessage{Stream: str}) <ide> if err != nil { <ide> return sf.FormatError(err) <ide> } <del> return b <add> return append(b, streamNewlineBytes...) <ide> } <ide> return []byte(str + "\r") <ide> } <ide> func (sf *StreamFormatter) FormatStatus(id, format string, a ...interface{}) []b <ide> if err != nil { <ide> return sf.FormatError(err) <ide> } <del> return b <add> return append(b, streamNewlineBytes...) <ide> } <del> return []byte(str + "\r\n") <add> return []byte(str + streamNewline) <ide> } <ide> <ide> func (sf *StreamFormatter) FormatError(err error) []byte { <ide> func (sf *StreamFormatter) FormatError(err error) []byte { <ide> jsonError = &JSONError{Message: err.Error()} <ide> } <ide> if b, err := json.Marshal(&JSONMessage{Error: jsonError, ErrorMessage: err.Error()}); err == nil { <del> return b <add> return append(b, streamNewlineBytes...) <ide> } <del> return []byte("{\"error\":\"format error\"}") <add> return []byte("{\"error\":\"format error\"}" + streamNewline) <ide> } <del> return []byte("Error: " + err.Error() + "\r\n") <add> return []byte("Error: " + err.Error() + streamNewline) <ide> } <ide> <ide> func (sf *StreamFormatter) FormatProgress(id, action string, progress *JSONProgress) []byte {
1
Text
Text
drop readme terms no longer relevant
c622e532fc361ad9072840d1c0ab0091bc43d61a
<ide><path>activestorage/README.md <ide> Active Storage, with its included JavaScript library, supports uploading directl <ide> | `direct-upload:end` | `<input>` | `{id, file}` | A direct upload has ended. | <ide> | `direct-uploads:end` | `<form>` | None | All direct uploads have ended. | <ide> <del>## Compatibility & Expectations <del> <del>Active Storage only works with the development version of Rails 5.2+ (as of July 19, 2017). This separate repository is a staging ground for the upcoming inclusion in rails/rails prior to the Rails 5.2 release. It is not intended to be a long-term stand-alone repository. <del> <del>Furthermore, this repository is likely to be in heavy flux prior to the merge to rails/rails. You're heartedly encouraged to follow along and even use Active Storage in this phase, but don't be surprised if the API suffers frequent breaking changes prior to the merge. <del> <del>## Todos <del> <del>- Convert MirrorService to use threading <del>- Read metadata via Marcel? <del>- Add Migrator to copy/move between services <del> <ide> ## License <ide> <ide> Active Storage is released under the [MIT License](https://opensource.org/licenses/MIT).
1
Text
Text
remove extra comma in cluster docs
84afdc39d0923246a0d6a9b86e7780912d5b0a02
<ide><path>doc/api/cluster.md <ide> $ NODE_DEBUG=cluster node server.js <ide> 23521,Master Worker 23528 online <ide> ``` <ide> <del>Please note that, on Windows, it is not yet possible to set up a named pipe <add>Please note that on Windows, it is not yet possible to set up a named pipe <ide> server in a worker. <ide> <ide> ## How It Works
1
Text
Text
update small note about layer limitation
2a230729dae91a54cfe617843b1dd7141ad51948
<ide><path>docs/sources/userguide/dockerimages.md <ide> instructions have executed we're left with the `324104cde6ad` image <ide> containers will get removed to clean things up. <ide> <ide> > **Note:** <del>> Due to a AUFS limitation, an image can't have more than 127 layers <del>> (see [this PR](https://github.com/dotcloud/docker/pull/2897)). <del>> This means that a Dockerfile can't create more than 127 containers <del>> during a build (each RUN command creates a new container). <del>> An image flatten strategy is discussed [here](https://github.com/dotcloud/docker/issues/332). <add>> An image can't have more than 127 layers regardless of the storage driver. <add>> This limitation is set globally to encourage optimization of the overall <add>> size of images. <ide> <ide> We can then create a container from our new image. <ide>
1
Text
Text
add concrete install instructions for fedora linux
646d8a596646c83291dfa415c6a150cc47ac827b
<ide><path>docs/build-instructions/linux.md <ide> Ubuntu LTS 12.04 64-bit is the recommended platform. <ide> * OS with 64-bit architecture <ide> * [node.js](http://nodejs.org/download/) v0.10.x <ide> * [npm](http://www.npmjs.org/) v1.4.x <del> * libgnome-keyring-dev `sudo apt-get install libgnome-keyring-dev` (refer to your distribution's manual on how to install packages if you are not on Debian or Ubuntu-based systems) <del> * `npm config set python /usr/bin/python2 -g` to ensure that gyp uses Python 2 <add> * libgnome-keyring-dev <add> * on Ubuntu/Debian: `sudo apt-get install libgnome-keyring-dev` <add> * on Fedora: `sudo yum --assumeyes install libgnome-keyring-devel` <add> * on other distributions refer to the manual on how to install packages <add> * `sudo npm config set python /usr/bin/python2 -g` to ensure that gyp uses Python 2 <ide> <ide> <ide> ## Instructions
1
Go
Go
fix channel closing race in event tests
27b060492c483d61b76f18a529c94a71fdfc5312
<ide><path>integration-cli/docker_cli_build_unix_test.go <ide> func (s *DockerSuite) TestBuildCancellationKillsSleep(c *check.C) { <ide> } <ide> <ide> matcher := matchEventLine(buildID, "container", testActions) <del> go observer.Match(matcher) <add> processor := processEventMatch(testActions) <add> go observer.Match(matcher, processor) <ide> <ide> select { <ide> case <-time.After(10 * time.Second): <ide><path>integration-cli/docker_cli_events_unix_test.go <ide> func (s *DockerSuite) TestEventsStreaming(c *check.C) { <ide> } <ide> <ide> matcher := matchEventLine(containerID, "container", testActions) <del> go observer.Match(matcher) <add> processor := processEventMatch(testActions) <add> go observer.Match(matcher, processor) <ide> <ide> select { <ide> case <-time.After(5 * time.Second): <ide> func (s *DockerSuite) TestEventsImageUntagDelete(c *check.C) { <ide> } <ide> <ide> matcher := matchEventLine(imageID, "image", testActions) <del> go observer.Match(matcher) <add> processor := processEventMatch(testActions) <add> go observer.Match(matcher, processor) <ide> <ide> select { <ide> case <-time.After(10 * time.Second): <ide><path>integration-cli/events_utils.go <ide> var ( <ide> ) <ide> <ide> // eventMatcher is a function that tries to match an event input. <del>type eventMatcher func(text string) bool <add>// It returns true if the event matches and a map with <add>// a set of key/value to identify the match. <add>type eventMatcher func(text string) (map[string]string, bool) <add> <add>// eventMatchProcessor is a function to handle an event match. <add>// It receives a map of key/value with the information extracted in a match. <add>type eventMatchProcessor func(matches map[string]string) <ide> <ide> // eventObserver runs an events commands and observes its output. <ide> type eventObserver struct { <ide> func (e *eventObserver) Stop() { <ide> } <ide> <ide> // Match tries to match the events output with a given matcher. <del>func (e *eventObserver) Match(match eventMatcher) { <add>func (e *eventObserver) Match(match eventMatcher, process eventMatchProcessor) { <ide> for e.scanner.Scan() { <ide> text := e.scanner.Text() <ide> e.buffer.WriteString(text) <ide> e.buffer.WriteString("\n") <ide> <del> match(text) <add> if matches, ok := match(text); ok { <add> process(matches) <add> } <ide> } <ide> <ide> err := e.scanner.Err() <ide> func (e *eventObserver) CheckEventError(c *check.C, id, event string, match even <ide> out, _ := dockerCmd(c, "events", "--since", e.startTime, "--until", until) <ide> events := strings.Split(strings.TrimSpace(out), "\n") <ide> for _, e := range events { <del> if match(e) { <add> if _, ok := match(e); ok { <ide> foundEvent = true <ide> break <ide> } <ide> func (e *eventObserver) CheckEventError(c *check.C, id, event string, match even <ide> } <ide> <ide> // matchEventLine matches a text with the event regular expression. <del>// It returns the action and true if the regular expression matches with the given id and event type. <del>// It returns an empty string and false if there is no match. <add>// It returns the matches and true if the regular expression matches with the given id and event type. <add>// It returns an empty map and false if there is no match. <ide> func matchEventLine(id, eventType string, actions map[string]chan bool) eventMatcher { <del> return func(text string) bool { <add> return func(text string) (map[string]string, bool) { <ide> matches := parseEventText(text) <ide> if len(matches) == 0 { <del> return false <add> return matches, false <ide> } <ide> <ide> if matchIDAndEventType(matches, id, eventType) { <del> if ch, ok := actions[matches["action"]]; ok { <del> close(ch) <del> return true <add> if _, ok := actions[matches["action"]]; ok { <add> return matches, true <ide> } <ide> } <del> return false <add> return matches, false <add> } <add>} <add> <add>// processEventMatch closes an action channel when an event line matches the expected action. <add>func processEventMatch(actions map[string]chan bool) eventMatchProcessor { <add> return func(matches map[string]string) { <add> if ch, ok := actions[matches["action"]]; ok { <add> close(ch) <add> } <ide> } <ide> } <ide>
3
PHP
PHP
add nolock for null cache store
50c1a43c71d3d0ec51ab2533111df4e227d0a0d0
<ide><path>src/Illuminate/Cache/NoLock.php <add><?php <add> <add>namespace Illuminate\Cache; <add> <add>class NoLock extends Lock <add>{ <add> /** <add> * Attempt to acquire the lock. <add> * <add> * @return bool <add> */ <add> public function acquire() <add> { <add> return true; <add> } <add> <add> /** <add> * Release the lock. <add> * <add> * @return bool <add> */ <add> public function release() <add> { <add> return true; <add> } <add> <add> /** <add> * Releases this lock in disregard of ownership. <add> * <add> * @return void <add> */ <add> public function forceRelease() <add> { <add> // <add> } <add> <add> /** <add> * Returns the owner value written into the driver for this lock. <add> * <add> * @return mixed <add> */ <add> protected function getCurrentOwner() <add> { <add> return $this->owner; <add> } <add>} <ide><path>src/Illuminate/Cache/NullStore.php <ide> <ide> class NullStore extends TaggableStore implements LockProvider <ide> { <del> use RetrievesMultipleKeys, HasCacheLock; <add> use RetrievesMultipleKeys; <ide> <ide> /** <ide> * Retrieve an item from the cache by key. <ide> public function getPrefix() <ide> { <ide> return ''; <ide> } <add> <add> /** <add> * Get a lock instance. <add> * <add> * @param string $name <add> * @param int $seconds <add> * @param string|null $owner <add> * @return \Illuminate\Contracts\Cache\Lock <add> */ <add> public function lock($name, $seconds = 0, $owner = null) <add> { <add> return new NoLock($name, $seconds, $owner); <add> } <add> <add> /** <add> * Restore a lock instance using the owner identifier. <add> * <add> * @param string $name <add> * @param string $owner <add> * @return \Illuminate\Contracts\Cache\Lock <add> */ <add> public function restoreLock($name, $owner) <add> { <add> return $this->lock($name, 0, $owner); <add> } <ide> } <ide><path>tests/Integration/Cache/NoLockTest.php <add><?php <add> <add>namespace Illuminate\Tests\Integration\Cache; <add> <add>use Exception; <add>use Illuminate\Support\Carbon; <add>use Illuminate\Support\Facades\Cache; <add>use Orchestra\Testbench\TestCase; <add> <add>/** <add> * @group integration <add> */ <add>class NoLockTest extends TestCase <add>{ <add> /** <add> * Define environment setup. <add> * <add> * @param \Illuminate\Foundation\Application $app <add> * @return void <add> */ <add> protected function getEnvironmentSetUp($app) <add> { <add> $app['config']->set('cache.default', 'null'); <add> <add> $app['config']->set('cache.stores', [ <add> 'null' => [ <add> 'driver' => 'null', <add> ], <add> ]); <add> } <add> <add> public function testLocksCanAlwaysBeAcquiredAndReleased() <add> { <add> Cache::lock('foo')->forceRelease(); <add> <add> $lock = Cache::lock('foo', 10); <add> $this->assertTrue($lock->get()); <add> $this->assertTrue(Cache::lock('foo', 10)->get()); <add> $this->assertTrue($lock->release()); <add> $this->assertTrue($lock->release()); <add> } <add> <add> public function testLocksCanBlockForSeconds() <add> { <add> Carbon::setTestNow(); <add> <add> Cache::lock('foo')->forceRelease(); <add> $this->assertSame('taylor', Cache::lock('foo', 10)->block(1, function () { <add> return 'taylor'; <add> })); <add> <add> Cache::lock('foo')->forceRelease(); <add> $this->assertTrue(Cache::lock('foo', 10)->block(1)); <add> } <add>}
3
Go
Go
create a unified runcommand function with assert()
d7022f2b46589cb9d860219e1d8278351ba147c3
<ide><path>integration-cli/docker_api_test.go <ide> import ( <ide> "net/http" <ide> "net/http/httptest" <ide> "net/http/httputil" <del> "os/exec" <ide> "strconv" <ide> "strings" <ide> "time" <ide> <ide> "github.com/docker/docker/api" <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/go-check/check" <ide> ) <ide> <ide> func (s *DockerSuite) TestApiDockerApiVersion(c *check.C) { <ide> defer server.Close() <ide> <ide> // Test using the env var first <del> cmd := exec.Command(dockerBinary, "-H="+server.URL[7:], "version") <del> cmd.Env = appendBaseEnv(false, "DOCKER_API_VERSION=xxx") <del> out, _, _ := runCommandWithOutput(cmd) <del> <add> result := icmd.RunCmd(icmd.Cmd{ <add> Command: binaryWithArgs([]string{"-H", server.URL[7:], "version"}), <add> Env: []string{"DOCKER_API_VERSION=xxx"}, <add> }) <add> result.Assert(c, icmd.Expected{Out: "API version: xxx", ExitCode: 1}) <ide> c.Assert(svrVersion, check.Equals, "/vxxx/version") <del> <del> if !strings.Contains(out, "API version: xxx") { <del> c.Fatalf("Out didn't have 'xxx' for the API version, had:\n%s", out) <del> } <ide> } <ide> <ide> func (s *DockerSuite) TestApiErrorJSON(c *check.C) { <ide><path>integration-cli/docker_cli_attach_test.go <ide> import ( <ide> "sync" <ide> "time" <ide> <del> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/go-check/check" <ide> ) <ide> <ide> func (s *DockerSuite) TestAttachPausedContainer(c *check.C) { <ide> defer unpauseAllContainers() <ide> dockerCmd(c, "run", "-d", "--name=test", "busybox", "top") <ide> dockerCmd(c, "pause", "test") <del> out, _, err := dockerCmdWithError("attach", "test") <del> c.Assert(err, checker.NotNil, check.Commentf(out)) <del> c.Assert(out, checker.Contains, "You cannot attach to a paused container, unpause it first") <add> <add> result := dockerCmdWithResult("attach", "test") <add> result.Assert(c, icmd.Expected{ <add> Error: "exit status 1", <add> ExitCode: 1, <add> Err: "You cannot attach to a paused container, unpause it first", <add> }) <ide> } <ide><path>integration-cli/docker_cli_attach_unix_test.go <ide> func (s *DockerSuite) TestAttachClosedOnContainerStop(c *check.C) { <ide> } <ide> <ide> func (s *DockerSuite) TestAttachAfterDetach(c *check.C) { <del> <ide> name := "detachtest" <ide> <ide> cpty, tty, err := pty.Open() <ide> func (s *DockerSuite) TestAttachAfterDetach(c *check.C) { <ide> <ide> select { <ide> case err := <-errChan: <del> c.Assert(err, check.IsNil) <add> if err != nil { <add> buff := make([]byte, 200) <add> tty.Read(buff) <add> c.Fatalf("%s: %s", err, buff) <add> } <ide> case <-time.After(5 * time.Second): <ide> c.Fatal("timeout while detaching") <ide> } <ide><path>integration-cli/docker_cli_build_test.go <ide> import ( <ide> "github.com/docker/docker/builder/dockerfile/command" <ide> "github.com/docker/docker/pkg/archive" <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/stringutils" <ide> "github.com/go-check/check" <ide> ) <ide> func (s *DockerSuite) TestBuildDockerfileOutsideContext(c *check.C) { <ide> filepath.Join(ctx, "dockerfile1"), <ide> filepath.Join(ctx, "dockerfile2"), <ide> } { <del> out, _, err := dockerCmdWithError("build", "-t", name, "--no-cache", "-f", dockerfilePath, ".") <del> if err == nil { <del> c.Fatalf("Expected error with %s. Out: %s", dockerfilePath, out) <del> } <del> if !strings.Contains(out, "must be within the build context") && !strings.Contains(out, "Cannot locate Dockerfile") { <del> c.Fatalf("Unexpected error with %s. Out: %s", dockerfilePath, out) <del> } <add> result := dockerCmdWithResult("build", "-t", name, "--no-cache", "-f", dockerfilePath, ".") <add> result.Assert(c, icmd.Expected{ <add> Err: "must be within the build context", <add> ExitCode: 1, <add> }) <ide> deleteImages(name) <ide> } <ide> <ide><path>integration-cli/docker_cli_build_unix_test.go <ide> import ( <ide> "strings" <ide> "time" <ide> <add> "github.com/docker/docker/pkg/integration" <ide> "github.com/docker/docker/pkg/integration/checker" <ide> "github.com/docker/go-units" <ide> "github.com/go-check/check" <ide> func (s *DockerSuite) TestBuildCancellationKillsSleep(c *check.C) { <ide> } <ide> <ide> // Get the exit status of `docker build`, check it exited because killed. <del> if err := buildCmd.Wait(); err != nil && !isKilled(err) { <add> if err := buildCmd.Wait(); err != nil && !integration.IsKilled(err) { <ide> c.Fatalf("wait failed during build run: %T %s", err, err) <ide> } <ide> <ide><path>integration-cli/docker_cli_daemon_test.go <ide> import ( <ide> "time" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/mount" <ide> "github.com/docker/go-units" <ide> "github.com/docker/libnetwork/iptables" <ide> func (s *DockerDaemonSuite) TestDaemonDefaultNetworkInvalidClusterConfig(c *chec <ide> c.Assert(err, checker.IsNil) <ide> <ide> // Start daemon with docker0 bridge <del> ifconfigCmd := exec.Command("ifconfig", defaultNetworkBridge) <del> _, err = runCommand(ifconfigCmd) <del> c.Assert(err, check.IsNil) <add> result := icmd.RunCommand("ifconfig", defaultNetworkBridge) <add> result.Assert(c, icmd.Expected{}) <ide> <ide> err = d.Restart(fmt.Sprintf("--cluster-store=%s", discoveryBackend)) <ide> c.Assert(err, checker.IsNil) <ide> func (s *DockerDaemonSuite) TestDaemonRestartWithUnpausedRunningContainer(t *che <ide> <ide> pid, err := s.d.Cmd("inspect", "-f", "{{.State.Pid}}", cid) <ide> t.Assert(err, check.IsNil) <del> pid = strings.TrimSpace(pid) <ide> <ide> // pause the container <ide> if _, err := s.d.Cmd("pause", cid); err != nil { <ide> func (s *DockerDaemonSuite) TestDaemonRestartWithUnpausedRunningContainer(t *che <ide> } <ide> <ide> // resume the container <del> runCmd := exec.Command(ctrBinary, "--address", "unix:///var/run/docker/libcontainerd/docker-containerd.sock", "containers", "resume", cid) <del> if out, ec, err := runCommandWithOutput(runCmd); err != nil { <del> t.Fatalf("Failed to run ctr, ExitCode: %d, err: '%v' output: '%s' cid: '%s'\n", ec, err, out, cid) <del> } <add> result := icmd.RunCommand( <add> ctrBinary, <add> "--address", "unix:///var/run/docker/libcontainerd/docker-containerd.sock", <add> "containers", "resume", cid) <add> result.Assert(t, icmd.Expected{}) <ide> <ide> // Give time to containerd to process the command if we don't <ide> // the resume event might be received after we do the inspect <del> pidCmd := exec.Command("kill", "-0", pid) <del> _, ec, _ := runCommandWithOutput(pidCmd) <del> for ec == 0 { <del> time.Sleep(1 * time.Second) <del> _, ec, _ = runCommandWithOutput(pidCmd) <del> } <add> waitAndAssert(t, defaultReconciliationTimeout, func(*check.C) (interface{}, check.CommentInterface) { <add> result := icmd.RunCommand("kill", "-0", strings.TrimSpace(pid)) <add> return result.ExitCode, nil <add> }, checker.Equals, 0) <ide> <ide> // restart the daemon <ide> if err := s.d.Start("--live-restore"); err != nil { <ide><path>integration-cli/docker_cli_events_test.go <ide> import ( <ide> <ide> "github.com/docker/docker/daemon/events/testutils" <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/go-check/check" <ide> ) <ide> <ide> func (s *DockerSuite) TestEventsUntag(c *check.C) { <ide> dockerCmd(c, "tag", image, "utest:tag2") <ide> dockerCmd(c, "rmi", "utest:tag1") <ide> dockerCmd(c, "rmi", "utest:tag2") <del> eventsCmd := exec.Command(dockerBinary, "events", "--since=1") <del> out, exitCode, _, err := runCommandWithOutputForDuration(eventsCmd, time.Duration(time.Millisecond*2500)) <del> c.Assert(err, checker.IsNil) <del> c.Assert(exitCode, checker.Equals, 0, check.Commentf("Failed to get events")) <del> events := strings.Split(out, "\n") <add> <add> result := icmd.RunCmd(icmd.Cmd{ <add> Command: []string{dockerBinary, "events", "--since=1"}, <add> Timeout: time.Millisecond * 2500, <add> }) <add> result.Assert(c, icmd.Expected{Timeout: true}) <add> <add> events := strings.Split(result.Stdout(), "\n") <ide> nEvents := len(events) <ide> // The last element after the split above will be an empty string, so we <ide> // get the two elements before the last, which are the untags we're <ide> func (s *DockerSuite) TestEventsImageLoad(c *check.C) { <ide> c.Assert(noImageID, checker.Equals, "", check.Commentf("Should not have any image")) <ide> dockerCmd(c, "load", "-i", "saveimg.tar") <ide> <del> cmd := exec.Command("rm", "-rf", "saveimg.tar") <del> runCommand(cmd) <add> result := icmd.RunCommand("rm", "-rf", "saveimg.tar") <add> result.Assert(c, icmd.Expected{}) <ide> <ide> out, _ = dockerCmd(c, "images", "-q", "--no-trunc", myImageName) <ide> imageID := strings.TrimSpace(out) <ide><path>integration-cli/docker_cli_exec_test.go <ide> import ( <ide> "time" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/go-check/check" <ide> ) <ide> <ide> func (s *DockerSuite) TestExecEnv(c *check.C) { <ide> func (s *DockerSuite) TestExecExitStatus(c *check.C) { <ide> runSleepingContainer(c, "-d", "--name", "top") <ide> <del> // Test normal (non-detached) case first <del> cmd := exec.Command(dockerBinary, "exec", "top", "sh", "-c", "exit 23") <del> ec, _ := runCommand(cmd) <del> c.Assert(ec, checker.Equals, 23) <add> result := icmd.RunCommand(dockerBinary, "exec", "top", "sh", "-c", "exit 23") <add> result.Assert(c, icmd.Expected{ExitCode: 23, Error: "exit status 23"}) <ide> } <ide> <ide> func (s *DockerSuite) TestExecPausedContainer(c *check.C) { <ide><path>integration-cli/docker_cli_network_unix_test.go <ide> import ( <ide> "time" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/stringid" <ide> "github.com/docker/docker/runconfig" <ide> "github.com/docker/engine-api/types" <ide> func (s *DockerSuite) TestDockerNetworkInspectWithID(c *check.C) { <ide> } <ide> <ide> func (s *DockerSuite) TestDockerInspectMultipleNetwork(c *check.C) { <del> out, _ := dockerCmd(c, "network", "inspect", "host", "none") <add> result := dockerCmdWithResult("network", "inspect", "host", "none") <add> result.Assert(c, icmd.Expected{}) <add> <ide> networkResources := []types.NetworkResource{} <del> err := json.Unmarshal([]byte(out), &networkResources) <add> err := json.Unmarshal([]byte(result.Stdout()), &networkResources) <ide> c.Assert(err, check.IsNil) <ide> c.Assert(networkResources, checker.HasLen, 2) <ide> <ide> // Should print an error, return an exitCode 1 *but* should print the host network <del> out, exitCode, err := dockerCmdWithError("network", "inspect", "host", "nonexistent") <del> c.Assert(err, checker.NotNil) <del> c.Assert(exitCode, checker.Equals, 1) <del> c.Assert(out, checker.Contains, "Error: No such network: nonexistent") <add> result = dockerCmdWithResult("network", "inspect", "host", "nonexistent") <add> result.Assert(c, icmd.Expected{ <add> ExitCode: 1, <add> Err: "Error: No such network: nonexistent", <add> Out: "host", <add> }) <add> <ide> networkResources = []types.NetworkResource{} <del> inspectOut := strings.SplitN(out, "\nError: No such network: nonexistent\n", 2)[0] <del> err = json.Unmarshal([]byte(inspectOut), &networkResources) <add> err = json.Unmarshal([]byte(result.Stdout()), &networkResources) <ide> c.Assert(networkResources, checker.HasLen, 1) <ide> <ide> // Should print an error and return an exitCode, nothing else <del> out, exitCode, err = dockerCmdWithError("network", "inspect", "nonexistent") <del> c.Assert(err, checker.NotNil) <del> c.Assert(exitCode, checker.Equals, 1) <del> c.Assert(out, checker.Contains, "Error: No such network: nonexistent") <add> result = dockerCmdWithResult("network", "inspect", "nonexistent") <add> result.Assert(c, icmd.Expected{ <add> ExitCode: 1, <add> Err: "Error: No such network: nonexistent", <add> Out: "[]", <add> }) <ide> } <ide> <ide> func (s *DockerSuite) TestDockerInspectNetworkWithContainerName(c *check.C) { <ide><path>integration-cli/docker_cli_ps_test.go <ide> import ( <ide> "time" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/stringid" <ide> "github.com/go-check/check" <ide> ) <ide> func (s *DockerSuite) TestPsListContainersFilterStatus(c *check.C) { <ide> containerOut = strings.TrimSpace(out) <ide> c.Assert(containerOut, checker.Equals, secondID) <ide> <del> out, _, _ = dockerCmdWithTimeout(time.Second*60, "ps", "-a", "-q", "--filter=status=rubbish") <del> c.Assert(out, checker.Contains, "Unrecognised filter value for status", check.Commentf("Expected error response due to invalid status filter output: %q", out)) <add> result := dockerCmdWithTimeout(time.Second*60, "ps", "-a", "-q", "--filter=status=rubbish") <add> result.Assert(c, icmd.Expected{ <add> ExitCode: 1, <add> Err: "Unrecognised filter value for status", <add> }) <ide> <ide> // Windows doesn't support pausing of containers <ide> if daemonPlatform != "windows" { <ide><path>integration-cli/docker_cli_rename_test.go <ide> import ( <ide> "strings" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/stringid" <ide> "github.com/go-check/check" <ide> ) <ide> func (s *DockerSuite) TestRenameCheckNames(c *check.C) { <ide> name := inspectField(c, newName, "Name") <ide> c.Assert(name, checker.Equals, "/"+newName, check.Commentf("Failed to rename container %s", name)) <ide> <del> name, err := inspectFieldWithError("first_name", "Name") <del> c.Assert(err, checker.NotNil, check.Commentf(name)) <del> c.Assert(err.Error(), checker.Contains, "No such container, image or task: first_name") <add> result := dockerCmdWithResult("inspect", "-f={{.Name}}", "first_name") <add> result.Assert(c, icmd.Expected{ <add> ExitCode: 1, <add> Err: "No such container, image or task: first_name", <add> }) <ide> } <ide> <ide> func (s *DockerSuite) TestRenameInvalidName(c *check.C) { <ide><path>integration-cli/docker_cli_run_test.go <ide> import ( <ide> "time" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/mount" <ide> "github.com/docker/docker/pkg/stringid" <ide> "github.com/docker/docker/pkg/stringutils" <ide> func (s *DockerSuite) TestRunExitOnStdinClose(c *check.C) { <ide> // Test run -i --restart xxx doesn't hang <ide> func (s *DockerSuite) TestRunInteractiveWithRestartPolicy(c *check.C) { <ide> name := "test-inter-restart" <del> runCmd := exec.Command(dockerBinary, "run", "-i", "--name", name, "--restart=always", "busybox", "sh") <ide> <del> stdin, err := runCmd.StdinPipe() <del> c.Assert(err, checker.IsNil) <del> <del> err = runCmd.Start() <del> c.Assert(err, checker.IsNil) <del> c.Assert(waitRun(name), check.IsNil) <del> <del> _, err = stdin.Write([]byte("exit 11\n")) <del> c.Assert(err, checker.IsNil) <del> <del> finish := make(chan error) <del> go func() { <del> finish <- runCmd.Wait() <del> close(finish) <add> result := icmd.StartCmd(icmd.Cmd{ <add> Command: []string{dockerBinary, "run", "-i", "--name", name, "--restart=always", "busybox", "sh"}, <add> Stdin: bytes.NewBufferString("exit 11"), <add> }) <add> c.Assert(result.Error, checker.IsNil) <add> defer func() { <add> dockerCmdWithResult("stop", name).Assert(c, icmd.Expected{}) <ide> }() <del> delay := 10 * time.Second <del> select { <del> case <-finish: <del> case <-time.After(delay): <del> c.Fatal("run -i --restart hangs") <del> } <ide> <del> c.Assert(waitRun(name), check.IsNil) <del> dockerCmd(c, "stop", name) <add> result = icmd.WaitOnCmd(10*time.Second, result) <add> result.Assert(c, icmd.Expected{ExitCode: 11}) <ide> } <ide> <ide> // Test for #2267 <ide><path>integration-cli/docker_cli_volume_test.go <ide> import ( <ide> "strings" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/go-check/check" <ide> ) <ide> <ide> func (s *DockerSuite) TestVolumeCliInspectMulti(c *check.C) { <ide> dockerCmd(c, "volume", "create", "--name", "test2") <ide> dockerCmd(c, "volume", "create", "--name", "not-shown") <ide> <del> out, _, err := dockerCmdWithError("volume", "inspect", "--format='{{ .Name }}'", "test1", "test2", "doesntexist", "not-shown") <del> c.Assert(err, checker.NotNil) <add> result := dockerCmdWithResult("volume", "inspect", "--format={{ .Name }}", "test1", "test2", "doesntexist", "not-shown") <add> result.Assert(c, icmd.Expected{ <add> ExitCode: 1, <add> Err: "No such volume: doesntexist", <add> }) <add> <add> out := result.Stdout() <ide> outArr := strings.Split(strings.TrimSpace(out), "\n") <del> c.Assert(len(outArr), check.Equals, 3, check.Commentf("\n%s", out)) <add> c.Assert(len(outArr), check.Equals, 2, check.Commentf("\n%s", out)) <ide> <ide> c.Assert(out, checker.Contains, "test1") <ide> c.Assert(out, checker.Contains, "test2") <del> c.Assert(out, checker.Contains, "Error: No such volume: doesntexist") <ide> c.Assert(out, checker.Not(checker.Contains), "not-shown") <ide> } <ide> <ide><path>integration-cli/docker_experimental_network_test.go <ide> import ( <ide> "time" <ide> <ide> "github.com/docker/docker/pkg/integration/checker" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/parsers/kernel" <ide> "github.com/go-check/check" <ide> ) <ide> func (s *DockerSuite) TestDockerNetworkMacVlanBridgeInternalMode(c *check.C) { <ide> c.Assert(waitRun("second"), check.IsNil) <ide> <ide> // access outside of the network should fail <del> _, _, err := dockerCmdWithTimeout(time.Second, "exec", "first", "ping", "-c", "1", "-w", "1", "8.8.8.8") <del> c.Assert(err, check.NotNil) <add> result := dockerCmdWithTimeout(time.Second, "exec", "first", "ping", "-c", "1", "-w", "1", "8.8.8.8") <add> result.Assert(c, icmd.Expected{Timeout: true}) <add> <ide> // intra-network communications should succeed <del> _, _, err = dockerCmdWithError("exec", "second", "ping", "-c", "1", "first") <add> _, _, err := dockerCmdWithError("exec", "second", "ping", "-c", "1", "first") <ide> c.Assert(err, check.IsNil) <ide> } <ide> <ide> func (s *DockerSuite) TestDockerNetworkIpvlanL2InternalMode(c *check.C) { <ide> c.Assert(waitRun("second"), check.IsNil) <ide> <ide> // access outside of the network should fail <del> _, _, err := dockerCmdWithTimeout(time.Second, "exec", "first", "ping", "-c", "1", "-w", "1", "8.8.8.8") <del> c.Assert(err, check.NotNil) <add> result := dockerCmdWithTimeout(time.Second, "exec", "first", "ping", "-c", "1", "-w", "1", "8.8.8.8") <add> c.Assert(result.Error, check.NotNil) <ide> // intra-network communications should succeed <del> _, _, err = dockerCmdWithError("exec", "second", "ping", "-c", "1", "first") <add> _, _, err := dockerCmdWithError("exec", "second", "ping", "-c", "1", "first") <ide> c.Assert(err, check.IsNil) <ide> } <ide> <ide> func (s *DockerSuite) TestDockerNetworkIpvlanL3InternalMode(c *check.C) { <ide> c.Assert(waitRun("second"), check.IsNil) <ide> <ide> // access outside of the network should fail <del> _, _, err := dockerCmdWithTimeout(time.Second, "exec", "first", "ping", "-c", "1", "-w", "1", "8.8.8.8") <del> c.Assert(err, check.NotNil) <add> result := dockerCmdWithTimeout(time.Second, "exec", "first", "ping", "-c", "1", "-w", "1", "8.8.8.8") <add> c.Assert(result.Error, check.NotNil) <ide> // intra-network communications should succeed <del> _, _, err = dockerCmdWithError("exec", "second", "ping", "-c", "1", "first") <add> _, _, err := dockerCmdWithError("exec", "second", "ping", "-c", "1", "first") <ide> c.Assert(err, check.IsNil) <ide> } <ide> <ide><path>integration-cli/docker_utils.go <ide> import ( <ide> <ide> "github.com/docker/docker/opts" <ide> "github.com/docker/docker/pkg/httputils" <del> "github.com/docker/docker/pkg/integration" <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/ioutils" <ide> "github.com/docker/docker/pkg/stringutils" <ide> "github.com/docker/engine-api/types" <ide> func readBody(b io.ReadCloser) ([]byte, error) { <ide> } <ide> <ide> func deleteContainer(container string) error { <del> container = strings.TrimSpace(strings.Replace(container, "\n", " ", -1)) <del> rmArgs := strings.Split(fmt.Sprintf("rm -fv %v", container), " ") <del> exitCode, err := runCommand(exec.Command(dockerBinary, rmArgs...)) <del> // set error manually if not set <del> if exitCode != 0 && err == nil { <del> err = fmt.Errorf("failed to remove container: `docker rm` exit is non-zero") <del> } <del> <del> return err <add> return icmd.RunCommand(dockerBinary, "rm", "-fv", container).Error <ide> } <ide> <ide> func getAllContainers() (string, error) { <ide> func getSliceOfPausedContainers() ([]string, error) { <ide> } <ide> <ide> func unpauseContainer(container string) error { <del> unpauseCmd := exec.Command(dockerBinary, "unpause", container) <del> exitCode, err := runCommand(unpauseCmd) <del> if exitCode != 0 && err == nil { <del> err = fmt.Errorf("failed to unpause container") <del> } <del> <del> return err <add> return icmd.RunCommand(dockerBinary, "unpause", container).Error <ide> } <ide> <ide> func unpauseAllContainers() error { <ide> func unpauseAllContainers() error { <ide> } <ide> <ide> func deleteImages(images ...string) error { <del> args := []string{"rmi", "-f"} <del> args = append(args, images...) <del> rmiCmd := exec.Command(dockerBinary, args...) <del> exitCode, err := runCommand(rmiCmd) <del> // set error manually if not set <del> if exitCode != 0 && err == nil { <del> err = fmt.Errorf("failed to remove image: `docker rmi` exit is non-zero") <del> } <del> return err <add> args := []string{dockerBinary, "rmi", "-f"} <add> return icmd.RunCmd(icmd.Cmd{Command: append(args, images...)}).Error <ide> } <ide> <ide> func imageExists(image string) error { <del> inspectCmd := exec.Command(dockerBinary, "inspect", image) <del> exitCode, err := runCommand(inspectCmd) <del> if exitCode != 0 && err == nil { <del> err = fmt.Errorf("couldn't find image %q", image) <del> } <del> return err <add> return icmd.RunCommand(dockerBinary, "inspect", image).Error <ide> } <ide> <ide> func pullImageIfNotExist(image string) error { <ide> func dockerCmdWithError(args ...string) (string, int, error) { <ide> if err := validateArgs(args...); err != nil { <ide> return "", 0, err <ide> } <del> out, code, err := integration.DockerCmdWithError(dockerBinary, args...) <del> if err != nil { <del> err = fmt.Errorf("%v: %s", err, out) <add> result := icmd.RunCommand(dockerBinary, args...) <add> if result.Error != nil { <add> return result.Combined(), result.ExitCode, fmt.Errorf(result.Fails(icmd.Expected{})) <ide> } <del> return out, code, err <add> return result.Combined(), result.ExitCode, result.Error <ide> } <ide> <ide> func dockerCmdWithStdoutStderr(c *check.C, args ...string) (string, string, int) { <ide> if err := validateArgs(args...); err != nil { <ide> c.Fatalf(err.Error()) <ide> } <del> return integration.DockerCmdWithStdoutStderr(dockerBinary, c, args...) <add> <add> result := icmd.RunCommand(dockerBinary, args...) <add> // TODO: why is c ever nil? <add> if c != nil { <add> result.Assert(c, icmd.Expected{}) <add> } <add> return result.Stdout(), result.Stderr(), result.ExitCode <ide> } <ide> <ide> func dockerCmd(c *check.C, args ...string) (string, int) { <ide> if err := validateArgs(args...); err != nil { <ide> c.Fatalf(err.Error()) <ide> } <del> return integration.DockerCmd(dockerBinary, c, args...) <add> result := icmd.RunCommand(dockerBinary, args...) <add> result.Assert(c, icmd.Expected{}) <add> return result.Combined(), result.ExitCode <add>} <add> <add>func dockerCmdWithResult(args ...string) *icmd.Result { <add> return icmd.RunCommand(dockerBinary, args...) <add>} <add> <add>func binaryWithArgs(args []string) []string { <add> return append([]string{dockerBinary}, args...) <ide> } <ide> <ide> // execute a docker command with a timeout <del>func dockerCmdWithTimeout(timeout time.Duration, args ...string) (string, int, error) { <add>func dockerCmdWithTimeout(timeout time.Duration, args ...string) *icmd.Result { <ide> if err := validateArgs(args...); err != nil { <del> return "", 0, err <add> return &icmd.Result{Error: err} <ide> } <del> return integration.DockerCmdWithTimeout(dockerBinary, timeout, args...) <add> return icmd.RunCmd(icmd.Cmd{Command: binaryWithArgs(args), Timeout: timeout}) <ide> } <ide> <ide> // execute a docker command in a directory <ide> func dockerCmdInDir(c *check.C, path string, args ...string) (string, int, error) { <ide> if err := validateArgs(args...); err != nil { <ide> c.Fatalf(err.Error()) <ide> } <del> return integration.DockerCmdInDir(dockerBinary, path, args...) <add> result := icmd.RunCmd(icmd.Cmd{Command: binaryWithArgs(args), Dir: path}) <add> return result.Combined(), result.ExitCode, result.Error <ide> } <ide> <ide> // execute a docker command in a directory with a timeout <del>func dockerCmdInDirWithTimeout(timeout time.Duration, path string, args ...string) (string, int, error) { <add>func dockerCmdInDirWithTimeout(timeout time.Duration, path string, args ...string) *icmd.Result { <ide> if err := validateArgs(args...); err != nil { <del> return "", 0, err <add> return &icmd.Result{Error: err} <ide> } <del> return integration.DockerCmdInDirWithTimeout(dockerBinary, timeout, path, args...) <add> return icmd.RunCmd(icmd.Cmd{ <add> Command: binaryWithArgs(args), <add> Timeout: timeout, <add> Dir: path, <add> }) <ide> } <ide> <ide> // validateArgs is a checker to ensure tests are not running commands which are <ide> func buildImageCmdArgs(args []string, name, dockerfile string, useCache bool) *e <ide> } <ide> <ide> func waitForContainer(contID string, args ...string) error { <del> args = append([]string{"run", "--name", contID}, args...) <del> cmd := exec.Command(dockerBinary, args...) <del> if _, err := runCommand(cmd); err != nil { <del> return err <add> args = append([]string{dockerBinary, "run", "--name", contID}, args...) <add> result := icmd.RunCmd(icmd.Cmd{Command: args}) <add> if result.Error != nil { <add> return result.Error <ide> } <del> <del> if err := waitRun(contID); err != nil { <del> return err <del> } <del> <del> return nil <add> return waitRun(contID) <ide> } <ide> <ide> // waitRun will wait for the specified container to be running, maximum 5 seconds. <ide> func waitInspectWithArgs(name, expr, expected string, timeout time.Duration, arg <ide> <ide> args := append(arg, "inspect", "-f", expr, name) <ide> for { <del> cmd := exec.Command(dockerBinary, args...) <del> out, _, err := runCommandWithOutput(cmd) <del> if err != nil { <del> if !strings.Contains(out, "No such") { <del> return fmt.Errorf("error executing docker inspect: %v\n%s", err, out) <add> result := icmd.RunCommand(dockerBinary, args...) <add> if result.Error != nil { <add> if !strings.Contains(result.Stderr(), "No such") { <add> return fmt.Errorf("error executing docker inspect: %v\n%s", <add> result.Stderr(), result.Stdout()) <ide> } <ide> select { <ide> case <-after: <del> return err <add> return result.Error <ide> default: <ide> time.Sleep(10 * time.Millisecond) <ide> continue <ide> } <ide> } <ide> <del> out = strings.TrimSpace(out) <add> out := strings.TrimSpace(result.Stdout()) <ide> if out == expected { <ide> break <ide> } <ide><path>integration-cli/utils.go <ide> import ( <ide> "time" <ide> <ide> "github.com/docker/docker/pkg/integration" <add> "github.com/docker/docker/pkg/integration/cmd" <ide> ) <ide> <ide> func getPrefixAndSlashFromDaemonPlatform() (prefix, slash string) { <ide> func getPrefixAndSlashFromDaemonPlatform() (prefix, slash string) { <ide> return "", "/" <ide> } <ide> <del>func getExitCode(err error) (int, error) { <del> return integration.GetExitCode(err) <add>// TODO: update code to call cmd.RunCmd directly, and remove this function <add>func runCommandWithOutput(execCmd *exec.Cmd) (string, int, error) { <add> result := cmd.RunCmd(transformCmd(execCmd)) <add> return result.Combined(), result.ExitCode, result.Error <ide> } <ide> <del>func processExitCode(err error) (exitCode int) { <del> return integration.ProcessExitCode(err) <add>// TODO: update code to call cmd.RunCmd directly, and remove this function <add>func runCommandWithStdoutStderr(execCmd *exec.Cmd) (string, string, int, error) { <add> result := cmd.RunCmd(transformCmd(execCmd)) <add> return result.Stdout(), result.Stderr(), result.ExitCode, result.Error <ide> } <ide> <del>func isKilled(err error) bool { <del> return integration.IsKilled(err) <add>// TODO: update code to call cmd.RunCmd directly, and remove this function <add>func runCommand(execCmd *exec.Cmd) (exitCode int, err error) { <add> result := cmd.RunCmd(transformCmd(execCmd)) <add> return result.ExitCode, result.Error <ide> } <ide> <del>func runCommandWithOutput(cmd *exec.Cmd) (output string, exitCode int, err error) { <del> return integration.RunCommandWithOutput(cmd) <del>} <del> <del>func runCommandWithStdoutStderr(cmd *exec.Cmd) (stdout string, stderr string, exitCode int, err error) { <del> return integration.RunCommandWithStdoutStderr(cmd) <del>} <del> <del>func runCommandWithOutputForDuration(cmd *exec.Cmd, duration time.Duration) (output string, exitCode int, timedOut bool, err error) { <del> return integration.RunCommandWithOutputForDuration(cmd, duration) <del>} <del> <del>func runCommandWithOutputAndTimeout(cmd *exec.Cmd, timeout time.Duration) (output string, exitCode int, err error) { <del> return integration.RunCommandWithOutputAndTimeout(cmd, timeout) <del>} <del> <del>func runCommand(cmd *exec.Cmd) (exitCode int, err error) { <del> return integration.RunCommand(cmd) <add>// Temporary shim for migrating commands to the new function <add>func transformCmd(execCmd *exec.Cmd) cmd.Cmd { <add> return cmd.Cmd{ <add> Command: execCmd.Args, <add> Env: execCmd.Env, <add> Dir: execCmd.Dir, <add> Stdin: execCmd.Stdin, <add> Stdout: execCmd.Stdout, <add> } <ide> } <ide> <ide> func runCommandPipelineWithOutput(cmds ...*exec.Cmd) (output string, exitCode int, err error) { <ide><path>pkg/integration/cmd/command.go <add>package cmd <add> <add>import ( <add> "bytes" <add> "fmt" <add> "io" <add> "os/exec" <add> "path/filepath" <add> "runtime" <add> "strings" <add> "syscall" <add> "time" <add>) <add> <add>type testingT interface { <add> Fatalf(string, ...interface{}) <add>} <add> <add>const ( <add> // None is a token to inform Result.Assert that the output should be empty <add> None string = "<NOTHING>" <add>) <add> <add>// GetExitCode returns the ExitStatus of the specified error if its type is <add>// exec.ExitError, returns 0 and an error otherwise. <add>func GetExitCode(err error) (int, error) { <add> exitCode := 0 <add> if exiterr, ok := err.(*exec.ExitError); ok { <add> if procExit, ok := exiterr.Sys().(syscall.WaitStatus); ok { <add> return procExit.ExitStatus(), nil <add> } <add> } <add> return exitCode, fmt.Errorf("failed to get exit code") <add>} <add> <add>// ProcessExitCode process the specified error and returns the exit status code <add>// if the error was of type exec.ExitError, returns nothing otherwise. <add>func ProcessExitCode(err error) (exitCode int) { <add> if err != nil { <add> var exiterr error <add> if exitCode, exiterr = GetExitCode(err); exiterr != nil { <add> // TODO: Fix this so we check the error's text. <add> // we've failed to retrieve exit code, so we set it to 127 <add> exitCode = 127 <add> } <add> } <add> return <add>} <add> <add>// Result stores the result of running a command <add>type Result struct { <add> Cmd *exec.Cmd <add> ExitCode int <add> Error error <add> // Timeout is true if the command was killed because it ran for too long <add> Timeout bool <add> outBuffer *bytes.Buffer <add> errBuffer *bytes.Buffer <add>} <add> <add>// Assert compares the Result against the Expected struct, and fails the test if <add>// any of the expcetations are not met. <add>func (r *Result) Assert(t testingT, exp Expected) { <add> fails := r.Fails(exp) <add> if fails == "" { <add> return <add> } <add> <add> _, file, line, _ := runtime.Caller(1) <add> t.Fatalf("at %s:%d\n%s", filepath.Base(file), line, fails) <add>} <add> <add>// Fails returns a formatted string which reports on any failed expectations <add>func (r *Result) Fails(exp Expected) string { <add> errors := []string{} <add> add := func(format string, args ...interface{}) { <add> errors = append(errors, fmt.Sprintf(format, args...)) <add> } <add> <add> if exp.ExitCode != r.ExitCode { <add> add("ExitCode was %d expected %d", r.ExitCode, exp.ExitCode) <add> } <add> if exp.Timeout != r.Timeout { <add> if exp.Timeout { <add> add("Expected command to timeout") <add> } else { <add> add("Expected command to finish, but it hit the timeout") <add> } <add> } <add> if !matchOutput(exp.Out, r.Stdout()) { <add> add("Expected stdout to contain %q", exp.Out) <add> } <add> if !matchOutput(exp.Err, r.Stderr()) { <add> add("Expected stderr to contain %q", exp.Err) <add> } <add> switch { <add> // If a non-zero exit code is expected there is going to be an error. <add> // Don't require an error message as well as an exit code because the <add> // error message is going to be "exit status <code> which is not useful <add> case exp.Error == "" && exp.ExitCode != 0: <add> case exp.Error == "" && r.Error != nil: <add> add("Expected no error") <add> case exp.Error != "" && r.Error == nil: <add> add("Expected error to contain %q, but there was no error", exp.Error) <add> case exp.Error != "" && !strings.Contains(r.Error.Error(), exp.Error): <add> add("Expected error to contain %q", exp.Error) <add> } <add> <add> if len(errors) == 0 { <add> return "" <add> } <add> return fmt.Sprintf("%s\nFailures:\n%s\n", r, strings.Join(errors, "\n")) <add>} <add> <add>func matchOutput(expected string, actual string) bool { <add> switch expected { <add> case None: <add> return actual == "" <add> default: <add> return strings.Contains(actual, expected) <add> } <add>} <add> <add>func (r *Result) String() string { <add> var timeout string <add> if r.Timeout { <add> timeout = " (timeout)" <add> } <add> <add> return fmt.Sprintf(` <add>Command: %s <add>ExitCode: %d%s, Error: %s <add>Stdout: %v <add>Stderr: %v <add>`, <add> strings.Join(r.Cmd.Args, " "), <add> r.ExitCode, <add> timeout, <add> r.Error, <add> r.Stdout(), <add> r.Stderr()) <add>} <add> <add>// Expected is the expected output from a Command. This struct is compared to a <add>// Result struct by Result.Assert(). <add>type Expected struct { <add> ExitCode int <add> Timeout bool <add> Error string <add> Out string <add> Err string <add>} <add> <add>// Stdout returns the stdout of the process as a string <add>func (r *Result) Stdout() string { <add> return r.outBuffer.String() <add>} <add> <add>// Stderr returns the stderr of the process as a string <add>func (r *Result) Stderr() string { <add> return r.errBuffer.String() <add>} <add> <add>// Combined returns the stdout and stderr combined into a single string <add>func (r *Result) Combined() string { <add> return r.outBuffer.String() + r.errBuffer.String() <add>} <add> <add>// SetExitError sets Error and ExitCode based on Error <add>func (r *Result) SetExitError(err error) { <add> if err == nil { <add> return <add> } <add> r.Error = err <add> r.ExitCode = ProcessExitCode(err) <add>} <add> <add>// Cmd is a command to run. One of Command or CommandArgs can be used to set the <add>// comand line. Command will be paased to shlex and split into a string slice. <add>// CommandArgs is an already split command line. <add>type Cmd struct { <add> Command []string <add> Timeout time.Duration <add> Stdin io.Reader <add> Stdout io.Writer <add> Dir string <add> Env []string <add>} <add> <add>// RunCmd runs a command and returns a Result <add>func RunCmd(cmd Cmd) *Result { <add> result := StartCmd(cmd) <add> if result.Error != nil { <add> return result <add> } <add> return WaitOnCmd(cmd.Timeout, result) <add>} <add> <add>// RunCommand parses a command line and runs it, returning a result <add>func RunCommand(command string, args ...string) *Result { <add> return RunCmd(Cmd{Command: append([]string{command}, args...)}) <add>} <add> <add>// StartCmd starts a command, but doesn't wait for it to finish <add>func StartCmd(cmd Cmd) *Result { <add> result := buildCmd(cmd) <add> if result.Error != nil { <add> return result <add> } <add> result.SetExitError(result.Cmd.Start()) <add> return result <add>} <add> <add>func buildCmd(cmd Cmd) *Result { <add> var execCmd *exec.Cmd <add> switch len(cmd.Command) { <add> case 1: <add> execCmd = exec.Command(cmd.Command[0]) <add> default: <add> execCmd = exec.Command(cmd.Command[0], cmd.Command[1:]...) <add> } <add> outBuffer := new(bytes.Buffer) <add> errBuffer := new(bytes.Buffer) <add> <add> execCmd.Stdin = cmd.Stdin <add> execCmd.Dir = cmd.Dir <add> execCmd.Env = cmd.Env <add> if cmd.Stdout != nil { <add> execCmd.Stdout = io.MultiWriter(outBuffer, cmd.Stdout) <add> } else { <add> execCmd.Stdout = outBuffer <add> } <add> execCmd.Stderr = errBuffer <add> return &Result{ <add> Cmd: execCmd, <add> outBuffer: outBuffer, <add> errBuffer: errBuffer, <add> } <add>} <add> <add>// WaitOnCmd waits for a command to complete. If timeout is non-nil then <add>// only wait until the timeout. <add>func WaitOnCmd(timeout time.Duration, result *Result) *Result { <add> if timeout == time.Duration(0) { <add> result.SetExitError(result.Cmd.Wait()) <add> return result <add> } <add> <add> done := make(chan error, 1) <add> // Wait for command to exit in a goroutine <add> go func() { <add> done <- result.Cmd.Wait() <add> }() <add> <add> select { <add> case <-time.After(timeout): <add> killErr := result.Cmd.Process.Kill() <add> if killErr != nil { <add> fmt.Printf("failed to kill (pid=%d): %v\n", result.Cmd.Process.Pid, killErr) <add> } <add> result.Timeout = true <add> case err := <-done: <add> result.SetExitError(err) <add> } <add> return result <add>} <ide><path>pkg/integration/cmd/command_test.go <add>package cmd <add> <add>import ( <add> "runtime" <add> "strings" <add> "testing" <add> "time" <add> <add> "github.com/docker/docker/pkg/testutil/assert" <add>) <add> <add>func TestRunCommand(t *testing.T) { <add> // TODO Windows: Port this test <add> if runtime.GOOS == "windows" { <add> t.Skip("Needs porting to Windows") <add> } <add> <add> result := RunCommand("ls") <add> result.Assert(t, Expected{}) <add> <add> result = RunCommand("doesnotexists") <add> expectedError := `exec: "doesnotexists": executable file not found` <add> result.Assert(t, Expected{ExitCode: 127, Error: expectedError}) <add> <add> result = RunCommand("ls", "-z") <add> result.Assert(t, Expected{ <add> ExitCode: 2, <add> Error: "exit status 2", <add> Err: "invalid option", <add> }) <add> assert.Contains(t, result.Combined(), "invalid option") <add>} <add> <add>func TestRunCommandWithCombined(t *testing.T) { <add> // TODO Windows: Port this test <add> if runtime.GOOS == "windows" { <add> t.Skip("Needs porting to Windows") <add> } <add> <add> result := RunCommand("ls", "-a") <add> result.Assert(t, Expected{}) <add> <add> assert.Contains(t, result.Combined(), "..") <add> assert.Contains(t, result.Stdout(), "..") <add>} <add> <add>func TestRunCommandWithTimeoutFinished(t *testing.T) { <add> // TODO Windows: Port this test <add> if runtime.GOOS == "windows" { <add> t.Skip("Needs porting to Windows") <add> } <add> <add> result := RunCmd(Cmd{ <add> Command: []string{"ls", "-a"}, <add> Timeout: 50 * time.Millisecond, <add> }) <add> result.Assert(t, Expected{Out: ".."}) <add>} <add> <add>func TestRunCommandWithTimeoutKilled(t *testing.T) { <add> // TODO Windows: Port this test <add> if runtime.GOOS == "windows" { <add> t.Skip("Needs porting to Windows") <add> } <add> <add> command := []string{"sh", "-c", "while true ; do echo 1 ; sleep .1 ; done"} <add> result := RunCmd(Cmd{Command: command, Timeout: 500 * time.Millisecond}) <add> result.Assert(t, Expected{Timeout: true}) <add> <add> ones := strings.Split(result.Stdout(), "\n") <add> assert.Equal(t, len(ones), 6) <add>} <add> <add>func TestRunCommandWithErrors(t *testing.T) { <add> result := RunCommand("/foobar") <add> result.Assert(t, Expected{Error: "foobar", ExitCode: 127}) <add>} <add> <add>func TestRunCommandWithStdoutStderr(t *testing.T) { <add> result := RunCommand("echo", "hello", "world") <add> result.Assert(t, Expected{Out: "hello world\n", Err: None}) <add>} <add> <add>func TestRunCommandWithStdoutStderrError(t *testing.T) { <add> result := RunCommand("doesnotexists") <add> <add> expected := `exec: "doesnotexists": executable file not found` <add> result.Assert(t, Expected{Out: None, Err: None, ExitCode: 127, Error: expected}) <add> <add> switch runtime.GOOS { <add> case "windows": <add> expected = "ls: unknown option" <add> default: <add> expected = "ls: invalid option" <add> } <add> <add> result = RunCommand("ls", "-z") <add> result.Assert(t, Expected{ <add> Out: None, <add> Err: expected, <add> ExitCode: 2, <add> Error: "exit status 2", <add> }) <add>} <ide><path>pkg/integration/dockerCmd_utils.go <del>package integration <del> <del>import ( <del> "fmt" <del> "os/exec" <del> "strings" <del> "time" <del> <del> "github.com/go-check/check" <del>) <del> <del>// We use the elongated quote mechanism for quoting error returns as <del>// the use of strconv.Quote or %q in fmt.Errorf will escape characters. This <del>// has a big downside on Windows where the args include paths, so instead <del>// of something like c:\directory\file.txt, the output would be <del>// c:\\directory\\file.txt. This is highly misleading. <del>const quote = `"` <del> <del>var execCommand = exec.Command <del> <del>// DockerCmdWithError executes a docker command that is supposed to fail and returns <del>// the output, the exit code and the error. <del>func DockerCmdWithError(dockerBinary string, args ...string) (string, int, error) { <del> return RunCommandWithOutput(execCommand(dockerBinary, args...)) <del>} <del> <del>// DockerCmdWithStdoutStderr executes a docker command and returns the content of the <del>// stdout, stderr and the exit code. If a check.C is passed, it will fail and stop tests <del>// if the error is not nil. <del>func DockerCmdWithStdoutStderr(dockerBinary string, c *check.C, args ...string) (string, string, int) { <del> stdout, stderr, status, err := RunCommandWithStdoutStderr(execCommand(dockerBinary, args...)) <del> if c != nil { <del> c.Assert(err, check.IsNil, check.Commentf(quote+"%v"+quote+" failed with errors: %s, %v", strings.Join(args, " "), stderr, err)) <del> } <del> return stdout, stderr, status <del>} <del> <del>// DockerCmd executes a docker command and returns the output and the exit code. If the <del>// command returns an error, it will fail and stop the tests. <del>func DockerCmd(dockerBinary string, c *check.C, args ...string) (string, int) { <del> out, status, err := RunCommandWithOutput(execCommand(dockerBinary, args...)) <del> c.Assert(err, check.IsNil, check.Commentf(quote+"%v"+quote+" failed with errors: %s, %v", strings.Join(args, " "), out, err)) <del> return out, status <del>} <del> <del>// DockerCmdWithTimeout executes a docker command with a timeout, and returns the output, <del>// the exit code and the error (if any). <del>func DockerCmdWithTimeout(dockerBinary string, timeout time.Duration, args ...string) (string, int, error) { <del> out, status, err := RunCommandWithOutputAndTimeout(execCommand(dockerBinary, args...), timeout) <del> if err != nil { <del> return out, status, fmt.Errorf(quote+"%v"+quote+" failed with errors: %v : %q", strings.Join(args, " "), err, out) <del> } <del> return out, status, err <del>} <del> <del>// DockerCmdInDir executes a docker command in a directory and returns the output, the <del>// exit code and the error (if any). <del>func DockerCmdInDir(dockerBinary string, path string, args ...string) (string, int, error) { <del> dockerCommand := execCommand(dockerBinary, args...) <del> dockerCommand.Dir = path <del> out, status, err := RunCommandWithOutput(dockerCommand) <del> if err != nil { <del> return out, status, fmt.Errorf(quote+"%v"+quote+" failed with errors: %v : %q", strings.Join(args, " "), err, out) <del> } <del> return out, status, err <del>} <del> <del>// DockerCmdInDirWithTimeout executes a docker command in a directory with a timeout and <del>// returns the output, the exit code and the error (if any). <del>func DockerCmdInDirWithTimeout(dockerBinary string, timeout time.Duration, path string, args ...string) (string, int, error) { <del> dockerCommand := execCommand(dockerBinary, args...) <del> dockerCommand.Dir = path <del> out, status, err := RunCommandWithOutputAndTimeout(dockerCommand, timeout) <del> if err != nil { <del> return out, status, fmt.Errorf(quote+"%v"+quote+" failed with errors: %v : %q", strings.Join(args, " "), err, out) <del> } <del> return out, status, err <del>} <ide><path>pkg/integration/dockerCmd_utils_test.go <del>package integration <del> <del>import ( <del> "fmt" <del> "os" <del> "os/exec" <del> "testing" <del> <del> "io/ioutil" <del> "strings" <del> "time" <del> <del> "github.com/go-check/check" <del>) <del> <del>const dockerBinary = "docker" <del> <del>// Setup go-check for this test <del>func Test(t *testing.T) { <del> check.TestingT(t) <del>} <del> <del>func init() { <del> check.Suite(&DockerCmdSuite{}) <del>} <del> <del>type DockerCmdSuite struct{} <del> <del>// Fake the exec.Command to use our mock. <del>func (s *DockerCmdSuite) SetUpTest(c *check.C) { <del> execCommand = fakeExecCommand <del>} <del> <del>// And bring it back to normal after the test. <del>func (s *DockerCmdSuite) TearDownTest(c *check.C) { <del> execCommand = exec.Command <del>} <del> <del>// DockerCmdWithError tests <del> <del>func (s *DockerCmdSuite) TestDockerCmdWithError(c *check.C) { <del> cmds := []struct { <del> binary string <del> args []string <del> expectedOut string <del> expectedExitCode int <del> expectedError error <del> }{ <del> { <del> "doesnotexists", <del> []string{}, <del> "Command doesnotexists not found.", <del> 1, <del> fmt.Errorf("exit status 1"), <del> }, <del> { <del> dockerBinary, <del> []string{"an", "error"}, <del> "an error has occurred", <del> 1, <del> fmt.Errorf("exit status 1"), <del> }, <del> { <del> dockerBinary, <del> []string{"an", "exitCode", "127"}, <del> "an error has occurred with exitCode 127", <del> 127, <del> fmt.Errorf("exit status 127"), <del> }, <del> { <del> dockerBinary, <del> []string{"run", "-ti", "ubuntu", "echo", "hello"}, <del> "hello", <del> 0, <del> nil, <del> }, <del> } <del> for _, cmd := range cmds { <del> out, exitCode, error := DockerCmdWithError(cmd.binary, cmd.args...) <del> c.Assert(out, check.Equals, cmd.expectedOut, check.Commentf("Expected output %q for arguments %v, got %q", cmd.expectedOut, cmd.args, out)) <del> c.Assert(exitCode, check.Equals, cmd.expectedExitCode, check.Commentf("Expected exitCode %q for arguments %v, got %q", cmd.expectedExitCode, cmd.args, exitCode)) <del> if cmd.expectedError != nil { <del> c.Assert(error, check.NotNil, check.Commentf("Expected an error %q, got nothing", cmd.expectedError)) <del> c.Assert(error.Error(), check.Equals, cmd.expectedError.Error(), check.Commentf("Expected error %q for arguments %v, got %q", cmd.expectedError.Error(), cmd.args, error.Error())) <del> } else { <del> c.Assert(error, check.IsNil, check.Commentf("Expected no error, got %v", error)) <del> } <del> } <del>} <del> <del>// DockerCmdWithStdoutStderr tests <del> <del>type dockerCmdWithStdoutStderrErrorSuite struct{} <del> <del>func (s *dockerCmdWithStdoutStderrErrorSuite) Test(c *check.C) { <del> // Should fail, the test too <del> DockerCmdWithStdoutStderr(dockerBinary, c, "an", "error") <del>} <del> <del>type dockerCmdWithStdoutStderrSuccessSuite struct{} <del> <del>func (s *dockerCmdWithStdoutStderrSuccessSuite) Test(c *check.C) { <del> stdout, stderr, exitCode := DockerCmdWithStdoutStderr(dockerBinary, c, "run", "-ti", "ubuntu", "echo", "hello") <del> c.Assert(stdout, check.Equals, "hello") <del> c.Assert(stderr, check.Equals, "") <del> c.Assert(exitCode, check.Equals, 0) <del> <del>} <del> <del>func (s *DockerCmdSuite) TestDockerCmdWithStdoutStderrError(c *check.C) { <del> // Run error suite, should fail. <del> output := String{} <del> result := check.Run(&dockerCmdWithStdoutStderrErrorSuite{}, &check.RunConf{Output: &output}) <del> c.Check(result.Succeeded, check.Equals, 0) <del> c.Check(result.Failed, check.Equals, 1) <del>} <del> <del>func (s *DockerCmdSuite) TestDockerCmdWithStdoutStderrSuccess(c *check.C) { <del> // Run error suite, should fail. <del> output := String{} <del> result := check.Run(&dockerCmdWithStdoutStderrSuccessSuite{}, &check.RunConf{Output: &output}) <del> c.Check(result.Succeeded, check.Equals, 1) <del> c.Check(result.Failed, check.Equals, 0) <del>} <del> <del>// DockerCmd tests <del> <del>type dockerCmdErrorSuite struct{} <del> <del>func (s *dockerCmdErrorSuite) Test(c *check.C) { <del> // Should fail, the test too <del> DockerCmd(dockerBinary, c, "an", "error") <del>} <del> <del>type dockerCmdSuccessSuite struct{} <del> <del>func (s *dockerCmdSuccessSuite) Test(c *check.C) { <del> stdout, exitCode := DockerCmd(dockerBinary, c, "run", "-ti", "ubuntu", "echo", "hello") <del> c.Assert(stdout, check.Equals, "hello") <del> c.Assert(exitCode, check.Equals, 0) <del> <del>} <del> <del>func (s *DockerCmdSuite) TestDockerCmdError(c *check.C) { <del> // Run error suite, should fail. <del> output := String{} <del> result := check.Run(&dockerCmdErrorSuite{}, &check.RunConf{Output: &output}) <del> c.Check(result.Succeeded, check.Equals, 0) <del> c.Check(result.Failed, check.Equals, 1) <del>} <del> <del>func (s *DockerCmdSuite) TestDockerCmdSuccess(c *check.C) { <del> // Run error suite, should fail. <del> output := String{} <del> result := check.Run(&dockerCmdSuccessSuite{}, &check.RunConf{Output: &output}) <del> c.Check(result.Succeeded, check.Equals, 1) <del> c.Check(result.Failed, check.Equals, 0) <del>} <del> <del>// DockerCmdWithTimeout tests <del> <del>func (s *DockerCmdSuite) TestDockerCmdWithTimeout(c *check.C) { <del> cmds := []struct { <del> binary string <del> args []string <del> timeout time.Duration <del> expectedOut string <del> expectedExitCode int <del> expectedError error <del> }{ <del> { <del> "doesnotexists", <del> []string{}, <del> 200 * time.Millisecond, <del> `Command doesnotexists not found.`, <del> 1, <del> fmt.Errorf(`"" failed with errors: exit status 1 : "Command doesnotexists not found."`), <del> }, <del> { <del> dockerBinary, <del> []string{"an", "error"}, <del> 200 * time.Millisecond, <del> `an error has occurred`, <del> 1, <del> fmt.Errorf(`"an error" failed with errors: exit status 1 : "an error has occurred"`), <del> }, <del> { <del> dockerBinary, <del> []string{"a", "command", "that", "times", "out"}, <del> 5 * time.Millisecond, <del> "", <del> 0, <del> fmt.Errorf(`"a command that times out" failed with errors: command timed out : ""`), <del> }, <del> { <del> dockerBinary, <del> []string{"run", "-ti", "ubuntu", "echo", "hello"}, <del> 200 * time.Millisecond, <del> "hello", <del> 0, <del> nil, <del> }, <del> } <del> for _, cmd := range cmds { <del> out, exitCode, error := DockerCmdWithTimeout(cmd.binary, cmd.timeout, cmd.args...) <del> c.Assert(out, check.Equals, cmd.expectedOut, check.Commentf("Expected output %q for arguments %v, got %q", cmd.expectedOut, cmd.args, out)) <del> c.Assert(exitCode, check.Equals, cmd.expectedExitCode, check.Commentf("Expected exitCode %q for arguments %v, got %q", cmd.expectedExitCode, cmd.args, exitCode)) <del> if cmd.expectedError != nil { <del> c.Assert(error, check.NotNil, check.Commentf("Expected an error %q, got nothing", cmd.expectedError)) <del> c.Assert(error.Error(), check.Equals, cmd.expectedError.Error(), check.Commentf("Expected error %q for arguments %v, got %q", cmd.expectedError.Error(), cmd.args, error.Error())) <del> } else { <del> c.Assert(error, check.IsNil, check.Commentf("Expected no error, got %v", error)) <del> } <del> } <del>} <del> <del>// DockerCmdInDir tests <del> <del>func (s *DockerCmdSuite) TestDockerCmdInDir(c *check.C) { <del> tempFolder, err := ioutil.TempDir("", "test-docker-cmd-in-dir") <del> c.Assert(err, check.IsNil) <del> <del> cmds := []struct { <del> binary string <del> args []string <del> expectedOut string <del> expectedExitCode int <del> expectedError error <del> }{ <del> { <del> "doesnotexists", <del> []string{}, <del> `Command doesnotexists not found.`, <del> 1, <del> fmt.Errorf(`"dir:%s" failed with errors: exit status 1 : "Command doesnotexists not found."`, tempFolder), <del> }, <del> { <del> dockerBinary, <del> []string{"an", "error"}, <del> `an error has occurred`, <del> 1, <del> fmt.Errorf(`"dir:%s an error" failed with errors: exit status 1 : "an error has occurred"`, tempFolder), <del> }, <del> { <del> dockerBinary, <del> []string{"run", "-ti", "ubuntu", "echo", "hello"}, <del> "hello", <del> 0, <del> nil, <del> }, <del> } <del> for _, cmd := range cmds { <del> // We prepend the arguments with dir:thefolder.. the fake command will check <del> // that the current workdir is the same as the one we are passing. <del> args := append([]string{"dir:" + tempFolder}, cmd.args...) <del> out, exitCode, error := DockerCmdInDir(cmd.binary, tempFolder, args...) <del> c.Assert(out, check.Equals, cmd.expectedOut, check.Commentf("Expected output %q for arguments %v, got %q", cmd.expectedOut, cmd.args, out)) <del> c.Assert(exitCode, check.Equals, cmd.expectedExitCode, check.Commentf("Expected exitCode %q for arguments %v, got %q", cmd.expectedExitCode, cmd.args, exitCode)) <del> if cmd.expectedError != nil { <del> c.Assert(error, check.NotNil, check.Commentf("Expected an error %q, got nothing", cmd.expectedError)) <del> c.Assert(error.Error(), check.Equals, cmd.expectedError.Error(), check.Commentf("Expected error %q for arguments %v, got %q", cmd.expectedError.Error(), cmd.args, error.Error())) <del> } else { <del> c.Assert(error, check.IsNil, check.Commentf("Expected no error, got %v", error)) <del> } <del> } <del>} <del> <del>// DockerCmdInDirWithTimeout tests <del> <del>func (s *DockerCmdSuite) TestDockerCmdInDirWithTimeout(c *check.C) { <del> tempFolder, err := ioutil.TempDir("", "test-docker-cmd-in-dir") <del> c.Assert(err, check.IsNil) <del> <del> cmds := []struct { <del> binary string <del> args []string <del> timeout time.Duration <del> expectedOut string <del> expectedExitCode int <del> expectedError error <del> }{ <del> { <del> "doesnotexists", <del> []string{}, <del> 200 * time.Millisecond, <del> `Command doesnotexists not found.`, <del> 1, <del> fmt.Errorf(`"dir:%s" failed with errors: exit status 1 : "Command doesnotexists not found."`, tempFolder), <del> }, <del> { <del> dockerBinary, <del> []string{"an", "error"}, <del> 200 * time.Millisecond, <del> `an error has occurred`, <del> 1, <del> fmt.Errorf(`"dir:%s an error" failed with errors: exit status 1 : "an error has occurred"`, tempFolder), <del> }, <del> { <del> dockerBinary, <del> []string{"a", "command", "that", "times", "out"}, <del> 5 * time.Millisecond, <del> "", <del> 0, <del> fmt.Errorf(`"dir:%s a command that times out" failed with errors: command timed out : ""`, tempFolder), <del> }, <del> { <del> dockerBinary, <del> []string{"run", "-ti", "ubuntu", "echo", "hello"}, <del> 200 * time.Millisecond, <del> "hello", <del> 0, <del> nil, <del> }, <del> } <del> for _, cmd := range cmds { <del> // We prepend the arguments with dir:thefolder.. the fake command will check <del> // that the current workdir is the same as the one we are passing. <del> args := append([]string{"dir:" + tempFolder}, cmd.args...) <del> out, exitCode, error := DockerCmdInDirWithTimeout(cmd.binary, cmd.timeout, tempFolder, args...) <del> c.Assert(out, check.Equals, cmd.expectedOut, check.Commentf("Expected output %q for arguments %v, got %q", cmd.expectedOut, cmd.args, out)) <del> c.Assert(exitCode, check.Equals, cmd.expectedExitCode, check.Commentf("Expected exitCode %q for arguments %v, got %q", cmd.expectedExitCode, cmd.args, exitCode)) <del> if cmd.expectedError != nil { <del> c.Assert(error, check.NotNil, check.Commentf("Expected an error %q, got nothing", cmd.expectedError)) <del> c.Assert(error.Error(), check.Equals, cmd.expectedError.Error(), check.Commentf("Expected error %q for arguments %v, got %q", cmd.expectedError.Error(), cmd.args, error.Error())) <del> } else { <del> c.Assert(error, check.IsNil, check.Commentf("Expected no error, got %v", error)) <del> } <del> } <del>} <del> <del>// Helpers :) <del> <del>// Type implementing the io.Writer interface for analyzing output. <del>type String struct { <del> value string <del>} <del> <del>// The only function required by the io.Writer interface. Will append <del>// written data to the String.value string. <del>func (s *String) Write(p []byte) (n int, err error) { <del> s.value += string(p) <del> return len(p), nil <del>} <del> <del>// Helper function that mock the exec.Command call (and call the test binary) <del>func fakeExecCommand(command string, args ...string) *exec.Cmd { <del> cs := []string{"-test.run=TestHelperProcess", "--", command} <del> cs = append(cs, args...) <del> cmd := exec.Command(os.Args[0], cs...) <del> cmd.Env = []string{"GO_WANT_HELPER_PROCESS=1"} <del> return cmd <del>} <del> <del>func TestHelperProcess(t *testing.T) { <del> if os.Getenv("GO_WANT_HELPER_PROCESS") != "1" { <del> return <del> } <del> args := os.Args <del> <del> // Previous arguments are tests stuff, that looks like : <del> // /tmp/go-build970079519/…/_test/integration.test -test.run=TestHelperProcess -- <del> cmd, args := args[3], args[4:] <del> // Handle the case where args[0] is dir:... <del> if len(args) > 0 && strings.HasPrefix(args[0], "dir:") { <del> expectedCwd := args[0][4:] <del> if len(args) > 1 { <del> args = args[1:] <del> } <del> cwd, err := os.Getwd() <del> if err != nil { <del> fmt.Fprintf(os.Stderr, "Failed to get workingdir: %v", err) <del> os.Exit(1) <del> } <del> // This checks that the given path is the same as the currend working dire <del> if expectedCwd != cwd { <del> fmt.Fprintf(os.Stderr, "Current workdir should be %q, but is %q", expectedCwd, cwd) <del> } <del> } <del> switch cmd { <del> case dockerBinary: <del> argsStr := strings.Join(args, " ") <del> switch argsStr { <del> case "an exitCode 127": <del> fmt.Fprintf(os.Stderr, "an error has occurred with exitCode 127") <del> os.Exit(127) <del> case "an error": <del> fmt.Fprintf(os.Stderr, "an error has occurred") <del> os.Exit(1) <del> case "a command that times out": <del> time.Sleep(10 * time.Second) <del> fmt.Fprintf(os.Stdout, "too long, should be killed") <del> // A random exit code (that should never happened in tests) <del> os.Exit(7) <del> case "run -ti ubuntu echo hello": <del> fmt.Fprintf(os.Stdout, "hello") <del> default: <del> fmt.Fprintf(os.Stdout, "no arguments") <del> } <del> default: <del> fmt.Fprintf(os.Stderr, "Command %s not found.", cmd) <del> os.Exit(1) <del> } <del> // some code here to check arguments perhaps? <del> os.Exit(0) <del>} <ide><path>pkg/integration/utils.go <ide> package integration <ide> <ide> import ( <ide> "archive/tar" <del> "bytes" <ide> "errors" <ide> "fmt" <ide> "io" <ide> import ( <ide> "syscall" <ide> "time" <ide> <add> icmd "github.com/docker/docker/pkg/integration/cmd" <ide> "github.com/docker/docker/pkg/stringutils" <ide> ) <ide> <del>// GetExitCode returns the ExitStatus of the specified error if its type is <del>// exec.ExitError, returns 0 and an error otherwise. <del>func GetExitCode(err error) (int, error) { <del> exitCode := 0 <del> if exiterr, ok := err.(*exec.ExitError); ok { <del> if procExit, ok := exiterr.Sys().(syscall.WaitStatus); ok { <del> return procExit.ExitStatus(), nil <del> } <del> } <del> return exitCode, fmt.Errorf("failed to get exit code") <del>} <del> <del>// ProcessExitCode process the specified error and returns the exit status code <del>// if the error was of type exec.ExitError, returns nothing otherwise. <del>func ProcessExitCode(err error) (exitCode int) { <del> if err != nil { <del> var exiterr error <del> if exitCode, exiterr = GetExitCode(err); exiterr != nil { <del> // TODO: Fix this so we check the error's text. <del> // we've failed to retrieve exit code, so we set it to 127 <del> exitCode = 127 <del> } <del> } <del> return <del>} <del> <ide> // IsKilled process the specified error and returns whether the process was killed or not. <ide> func IsKilled(err error) bool { <ide> if exitErr, ok := err.(*exec.ExitError); ok { <ide> func IsKilled(err error) bool { <ide> return false <ide> } <ide> <del>// RunCommandWithOutput runs the specified command and returns the combined output (stdout/stderr) <del>// with the exitCode different from 0 and the error if something bad happened <del>func RunCommandWithOutput(cmd *exec.Cmd) (output string, exitCode int, err error) { <add>func runCommandWithOutput(cmd *exec.Cmd) (output string, exitCode int, err error) { <ide> exitCode = 0 <ide> out, err := cmd.CombinedOutput() <del> exitCode = ProcessExitCode(err) <add> exitCode = icmd.ProcessExitCode(err) <ide> output = string(out) <ide> return <ide> } <ide> <del>// RunCommandWithStdoutStderr runs the specified command and returns stdout and stderr separately <del>// with the exitCode different from 0 and the error if something bad happened <del>func RunCommandWithStdoutStderr(cmd *exec.Cmd) (stdout string, stderr string, exitCode int, err error) { <del> var ( <del> stderrBuffer, stdoutBuffer bytes.Buffer <del> ) <del> exitCode = 0 <del> cmd.Stderr = &stderrBuffer <del> cmd.Stdout = &stdoutBuffer <del> err = cmd.Run() <del> exitCode = ProcessExitCode(err) <del> <del> stdout = stdoutBuffer.String() <del> stderr = stderrBuffer.String() <del> return <del>} <del> <del>// RunCommandWithOutputForDuration runs the specified command "timeboxed" by the specified duration. <del>// If the process is still running when the timebox is finished, the process will be killed and . <del>// It will returns the output with the exitCode different from 0 and the error if something bad happened <del>// and a boolean whether it has been killed or not. <del>func RunCommandWithOutputForDuration(cmd *exec.Cmd, duration time.Duration) (output string, exitCode int, timedOut bool, err error) { <del> var outputBuffer bytes.Buffer <del> if cmd.Stdout != nil { <del> err = errors.New("cmd.Stdout already set") <del> return <del> } <del> cmd.Stdout = &outputBuffer <del> <del> if cmd.Stderr != nil { <del> err = errors.New("cmd.Stderr already set") <del> return <del> } <del> cmd.Stderr = &outputBuffer <del> <del> // Start the command in the main thread.. <del> err = cmd.Start() <del> if err != nil { <del> err = fmt.Errorf("Fail to start command %v : %v", cmd, err) <del> } <del> <del> type exitInfo struct { <del> exitErr error <del> exitCode int <del> } <del> <del> done := make(chan exitInfo, 1) <del> <del> go func() { <del> // And wait for it to exit in the goroutine :) <del> info := exitInfo{} <del> info.exitErr = cmd.Wait() <del> info.exitCode = ProcessExitCode(info.exitErr) <del> done <- info <del> }() <del> <del> select { <del> case <-time.After(duration): <del> killErr := cmd.Process.Kill() <del> if killErr != nil { <del> fmt.Printf("failed to kill (pid=%d): %v\n", cmd.Process.Pid, killErr) <del> } <del> timedOut = true <del> case info := <-done: <del> err = info.exitErr <del> exitCode = info.exitCode <del> } <del> output = outputBuffer.String() <del> return <del>} <del> <del>var errCmdTimeout = fmt.Errorf("command timed out") <del> <del>// RunCommandWithOutputAndTimeout runs the specified command "timeboxed" by the specified duration. <del>// It returns the output with the exitCode different from 0 and the error if something bad happened or <del>// if the process timed out (and has been killed). <del>func RunCommandWithOutputAndTimeout(cmd *exec.Cmd, timeout time.Duration) (output string, exitCode int, err error) { <del> var timedOut bool <del> output, exitCode, timedOut, err = RunCommandWithOutputForDuration(cmd, timeout) <del> if timedOut { <del> err = errCmdTimeout <del> } <del> return <del>} <del> <del>// RunCommand runs the specified command and returns the exitCode different from 0 <del>// and the error if something bad happened. <del>func RunCommand(cmd *exec.Cmd) (exitCode int, err error) { <del> exitCode = 0 <del> err = cmd.Run() <del> exitCode = ProcessExitCode(err) <del> return <del>} <del> <ide> // RunCommandPipelineWithOutput runs the array of commands with the output <ide> // of each pipelined with the following (like cmd1 | cmd2 | cmd3 would do). <ide> // It returns the final output, the exitCode different from 0 and the error <ide> func RunCommandPipelineWithOutput(cmds ...*exec.Cmd) (output string, exitCode in <ide> } <ide> <ide> // wait on last cmd <del> return RunCommandWithOutput(cmds[len(cmds)-1]) <add> return runCommandWithOutput(cmds[len(cmds)-1]) <ide> } <ide> <ide> // ConvertSliceOfStringsToMap converts a slices of string in a map <ide> func RunAtDifferentDate(date time.Time, block func()) { <ide> const timeLayout = "010203042006" <ide> // Ensure we bring time back to now <ide> now := time.Now().Format(timeLayout) <del> dateReset := exec.Command("date", now) <del> defer RunCommand(dateReset) <add> defer icmd.RunCommand("date", now) <ide> <del> dateChange := exec.Command("date", date.Format(timeLayout)) <del> RunCommand(dateChange) <add> icmd.RunCommand("date", date.Format(timeLayout)) <ide> block() <ide> return <ide> } <ide><path>pkg/integration/utils_test.go <ide> import ( <ide> "os/exec" <ide> "path/filepath" <ide> "runtime" <del> "strconv" <ide> "strings" <ide> "testing" <ide> "time" <ide> func TestIsKilledTrueWithKilledProcess(t *testing.T) { <ide> } <ide> } <ide> <del>func TestRunCommandWithOutput(t *testing.T) { <del> var ( <del> echoHelloWorldCmd *exec.Cmd <del> expected string <del> ) <del> if runtime.GOOS != "windows" { <del> echoHelloWorldCmd = exec.Command("echo", "hello", "world") <del> expected = "hello world\n" <del> } else { <del> echoHelloWorldCmd = exec.Command("cmd", "/s", "/c", "echo", "hello", "world") <del> expected = "hello world\r\n" <del> } <del> <del> out, exitCode, err := RunCommandWithOutput(echoHelloWorldCmd) <del> if out != expected || exitCode != 0 || err != nil { <del> t.Fatalf("Expected command to output %s, got %s, %v with exitCode %v", expected, out, err, exitCode) <del> } <del>} <del> <del>func TestRunCommandWithOutputError(t *testing.T) { <del> var ( <del> p string <del> wrongCmd *exec.Cmd <del> expected string <del> expectedExitCode int <del> ) <del> <del> if runtime.GOOS != "windows" { <del> p = "$PATH" <del> wrongCmd = exec.Command("ls", "-z") <del> expected = `ls: invalid option -- 'z' <del>Try 'ls --help' for more information. <del>` <del> expectedExitCode = 2 <del> } else { <del> p = "%PATH%" <del> wrongCmd = exec.Command("cmd", "/s", "/c", "dir", "/Z") <del> expected = "Invalid switch - " + strconv.Quote("Z") + ".\r\n" <del> expectedExitCode = 1 <del> } <del> cmd := exec.Command("doesnotexists") <del> out, exitCode, err := RunCommandWithOutput(cmd) <del> expectedError := `exec: "doesnotexists": executable file not found in ` + p <del> if out != "" || exitCode != 127 || err == nil || err.Error() != expectedError { <del> t.Fatalf("Expected command to output %s, got %s, %v with exitCode %v", expectedError, out, err, exitCode) <del> } <del> <del> out, exitCode, err = RunCommandWithOutput(wrongCmd) <del> <del> if out != expected || exitCode != expectedExitCode || err == nil || !strings.Contains(err.Error(), "exit status "+strconv.Itoa(expectedExitCode)) { <del> t.Fatalf("Expected command to output %s, got out:xxx%sxxx, err:%v with exitCode %v", expected, out, err, exitCode) <del> } <del>} <del> <del>func TestRunCommandWithStdoutStderr(t *testing.T) { <del> echoHelloWorldCmd := exec.Command("echo", "hello", "world") <del> stdout, stderr, exitCode, err := RunCommandWithStdoutStderr(echoHelloWorldCmd) <del> expected := "hello world\n" <del> if stdout != expected || stderr != "" || exitCode != 0 || err != nil { <del> t.Fatalf("Expected command to output %s, got stdout:%s, stderr:%s, err:%v with exitCode %v", expected, stdout, stderr, err, exitCode) <del> } <del>} <del> <del>func TestRunCommandWithStdoutStderrError(t *testing.T) { <del> p := "$PATH" <del> if runtime.GOOS == "windows" { <del> p = "%PATH%" <del> } <del> cmd := exec.Command("doesnotexists") <del> stdout, stderr, exitCode, err := RunCommandWithStdoutStderr(cmd) <del> expectedError := `exec: "doesnotexists": executable file not found in ` + p <del> if stdout != "" || stderr != "" || exitCode != 127 || err == nil || err.Error() != expectedError { <del> t.Fatalf("Expected command to output out:%s, stderr:%s, got stdout:%s, stderr:%s, err:%v with exitCode %v", "", "", stdout, stderr, err, exitCode) <del> } <del> <del> wrongLsCmd := exec.Command("ls", "-z") <del> expected := `ls: invalid option -- 'z' <del>Try 'ls --help' for more information. <del>` <del> <del> stdout, stderr, exitCode, err = RunCommandWithStdoutStderr(wrongLsCmd) <del> if stdout != "" && stderr != expected || exitCode != 2 || err == nil || err.Error() != "exit status 2" { <del> t.Fatalf("Expected command to output out:%s, stderr:%s, got stdout:%s, stderr:%s, err:%v with exitCode %v", "", expectedError, stdout, stderr, err, exitCode) <del> } <del>} <del> <del>func TestRunCommandWithOutputForDurationFinished(t *testing.T) { <del> // TODO Windows: Port this test <del> if runtime.GOOS == "windows" { <del> t.Skip("Needs porting to Windows") <del> } <del> <del> cmd := exec.Command("ls") <del> out, exitCode, timedOut, err := RunCommandWithOutputForDuration(cmd, 50*time.Millisecond) <del> if out == "" || exitCode != 0 || timedOut || err != nil { <del> t.Fatalf("Expected the command to run for less 50 milliseconds and thus not time out, but did not : out:[%s], exitCode:[%d], timedOut:[%v], err:[%v]", out, exitCode, timedOut, err) <del> } <del>} <del> <del>func TestRunCommandWithOutputForDurationKilled(t *testing.T) { <del> // TODO Windows: Port this test <del> if runtime.GOOS == "windows" { <del> t.Skip("Needs porting to Windows") <del> } <del> cmd := exec.Command("sh", "-c", "while true ; do echo 1 ; sleep .1 ; done") <del> out, exitCode, timedOut, err := RunCommandWithOutputForDuration(cmd, 500*time.Millisecond) <del> ones := strings.Split(out, "\n") <del> if len(ones) != 6 || exitCode != 0 || !timedOut || err != nil { <del> t.Fatalf("Expected the command to run for 500 milliseconds (and thus print six lines (five with 1, one empty) and time out, but did not : out:[%s], exitCode:%d, timedOut:%v, err:%v", out, exitCode, timedOut, err) <del> } <del>} <del> <del>func TestRunCommandWithOutputForDurationErrors(t *testing.T) { <del> cmd := exec.Command("ls") <del> cmd.Stdout = os.Stdout <del> if _, _, _, err := RunCommandWithOutputForDuration(cmd, 1*time.Millisecond); err == nil || err.Error() != "cmd.Stdout already set" { <del> t.Fatalf("Expected an error as cmd.Stdout was already set, did not (err:%s).", err) <del> } <del> cmd = exec.Command("ls") <del> cmd.Stderr = os.Stderr <del> if _, _, _, err := RunCommandWithOutputForDuration(cmd, 1*time.Millisecond); err == nil || err.Error() != "cmd.Stderr already set" { <del> t.Fatalf("Expected an error as cmd.Stderr was already set, did not (err:%s).", err) <del> } <del>} <del> <del>func TestRunCommandWithOutputAndTimeoutFinished(t *testing.T) { <del> // TODO Windows: Port this test <del> if runtime.GOOS == "windows" { <del> t.Skip("Needs porting to Windows") <del> } <del> <del> cmd := exec.Command("ls") <del> out, exitCode, err := RunCommandWithOutputAndTimeout(cmd, 50*time.Millisecond) <del> if out == "" || exitCode != 0 || err != nil { <del> t.Fatalf("Expected the command to run for less 50 milliseconds and thus not time out, but did not : out:[%s], exitCode:[%d], err:[%v]", out, exitCode, err) <del> } <del>} <del> <del>func TestRunCommandWithOutputAndTimeoutKilled(t *testing.T) { <del> // TODO Windows: Port this test <del> if runtime.GOOS == "windows" { <del> t.Skip("Needs porting to Windows") <del> } <del> <del> cmd := exec.Command("sh", "-c", "while true ; do echo 1 ; sleep .1 ; done") <del> out, exitCode, err := RunCommandWithOutputAndTimeout(cmd, 500*time.Millisecond) <del> ones := strings.Split(out, "\n") <del> if len(ones) != 6 || exitCode != 0 || err == nil || err.Error() != "command timed out" { <del> t.Fatalf("Expected the command to run for 500 milliseconds (and thus print six lines (five with 1, one empty) and time out with an error 'command timed out', but did not : out:[%s], exitCode:%d, err:%v", out, exitCode, err) <del> } <del>} <del> <del>func TestRunCommandWithOutputAndTimeoutErrors(t *testing.T) { <del> cmd := exec.Command("ls") <del> cmd.Stdout = os.Stdout <del> if _, _, err := RunCommandWithOutputAndTimeout(cmd, 1*time.Millisecond); err == nil || err.Error() != "cmd.Stdout already set" { <del> t.Fatalf("Expected an error as cmd.Stdout was already set, did not (err:%s).", err) <del> } <del> cmd = exec.Command("ls") <del> cmd.Stderr = os.Stderr <del> if _, _, err := RunCommandWithOutputAndTimeout(cmd, 1*time.Millisecond); err == nil || err.Error() != "cmd.Stderr already set" { <del> t.Fatalf("Expected an error as cmd.Stderr was already set, did not (err:%s).", err) <del> } <del>} <del> <del>func TestRunCommand(t *testing.T) { <del> // TODO Windows: Port this test <del> if runtime.GOOS == "windows" { <del> t.Skip("Needs porting to Windows") <del> } <del> <del> p := "$PATH" <del> if runtime.GOOS == "windows" { <del> p = "%PATH%" <del> } <del> lsCmd := exec.Command("ls") <del> exitCode, err := RunCommand(lsCmd) <del> if exitCode != 0 || err != nil { <del> t.Fatalf("Expected runCommand to run the command successfully, got: exitCode:%d, err:%v", exitCode, err) <del> } <del> <del> var expectedError string <del> <del> exitCode, err = RunCommand(exec.Command("doesnotexists")) <del> expectedError = `exec: "doesnotexists": executable file not found in ` + p <del> if exitCode != 127 || err == nil || err.Error() != expectedError { <del> t.Fatalf("Expected runCommand to run the command successfully, got: exitCode:%d, err:%v", exitCode, err) <del> } <del> wrongLsCmd := exec.Command("ls", "-z") <del> expected := 2 <del> expectedError = `exit status 2` <del> exitCode, err = RunCommand(wrongLsCmd) <del> if exitCode != expected || err == nil || err.Error() != expectedError { <del> t.Fatalf("Expected runCommand to run the command successfully, got: exitCode:%d, err:%v", exitCode, err) <del> } <del>} <del> <ide> func TestRunCommandPipelineWithOutputWithNotEnoughCmds(t *testing.T) { <ide> _, _, err := RunCommandPipelineWithOutput(exec.Command("ls")) <ide> expectedError := "pipeline does not have multiple cmds"
22
PHP
PHP
apply suggestions from code review
45ce5844492018784220b150f63eb65c177fab93
<ide><path>src/Http/ServerRequest.php <ide> public function accepts(?string $type = null) <ide> * of the accepted content types. <ide> * <ide> * @return array An array of `prefValue => [content/types]` <del> * @deprecated 4.4.0 Use accepts() or ContentTypeNegotiation instead. <add> * @deprecated 4.4.0 Use `accepts()` or `ContentTypeNegotiation` class instead. <ide> */ <ide> public function parseAccept(): array <ide> {
1
Ruby
Ruby
add function to detect if .app(s) installed
d8d76da55fbd1d06efaead2f492bd0b70a122683
<ide><path>Library/Homebrew/keg.rb <ide> def python_site_packages_installed? <ide> (self/'lib/python2.7/site-packages').directory? <ide> end <ide> <add> def app_installed? <add> not Dir.glob("#{self}/{,libexec/}*.app").empty? <add> end <add> <ide> def version <ide> require 'version' <ide> Version.new(basename.to_s)
1
Python
Python
fix regex for version matching
a9e70d7d0b50ed615428e8344d510effb6713f02
<ide><path>tools/gyp/pylib/gyp/xcode_emulation.py <ide> def XcodeVersion(): <ide> except: <ide> version = CLTVersion() <ide> if version: <del> version = re.match(r'(\d\.\d\.?\d*)', version).groups()[0] <add> version = re.match(r'(\d+\.\d+\.?\d*)', version).groups()[0] <ide> else: <ide> raise GypError("No Xcode or CLT version detected!") <ide> # The CLT has no build information, so we return an empty string.
1
Ruby
Ruby
remove warnings about @variable_for_layout
c3c1ff40fcc4cbc31a5396a8b7737755ad4bc95b
<ide><path>actionpack/test/controller/render_test.rb <ide> def new <ide> class TestController < ActionController::Base <ide> protect_from_forgery <ide> <add> before_filter :set_variable_for_layout <add> <ide> class LabellingFormBuilder < ActionView::Helpers::FormBuilder <ide> end <ide> <ide> def render_action_hello_world_as_symbol <ide> end <ide> <ide> def layout_test_with_different_layout <del> @variable_for_layout = nil <ide> render :action => "hello_world", :layout => "standard" <ide> end <ide> <ide> def layout_test_with_different_layout_and_string_action <del> @variable_for_layout = nil <ide> render "hello_world", :layout => "standard" <ide> end <ide> <ide> def layout_test_with_different_layout_and_symbol_action <del> @variable_for_layout = nil <ide> render :hello_world, :layout => "standard" <ide> end <ide> <ide> def rendering_without_layout <ide> end <ide> <ide> def layout_overriding_layout <del> @variable_for_layout = nil <ide> render :action => "hello_world", :layout => "standard" <ide> end <ide> <ide> def render_with_filters <ide> <ide> private <ide> <add> def set_variable_for_layout <add> @variable_for_layout = nil <add> end <add> <ide> def determine_layout <del> @variable_for_layout ||= nil <ide> case action_name <ide> when "hello_world", "layout_test", "rendering_without_layout", <ide> "rendering_nothing_on_layout", "render_text_hello_world",
1
Javascript
Javascript
add check to test-fs-readfile-tostring-fail
604ac4bc6c294dd8cb8f2e7dd231ccba4a9d9cfd
<ide><path>test/pummel/test-fs-readfile-tostring-fail.js <ide> stream.on('error', (err) => { throw err; }); <ide> <ide> const size = kStringMaxLength / 200; <ide> const a = Buffer.alloc(size, 'a'); <add>let expectedSize = 0; <ide> <ide> for (let i = 0; i < 201; i++) { <del> stream.write(a); <add> stream.write(a, (err) => { assert.ifError(err); }); <add> expectedSize += a.length; <ide> } <ide> <ide> stream.end(); <ide> stream.on('finish', common.mustCall(function() { <add> assert.strictEqual(stream.bytesWritten, expectedSize, <add> `${stream.bytesWritten} bytes written (expected ${expectedSize} bytes).`); <ide> fs.readFile(file, 'utf8', common.mustCall(function(err, buf) { <ide> assert.ok(err instanceof Error); <ide> if (err.message !== 'Array buffer allocation failed') {
1
Ruby
Ruby
fix failing test on several methods on parameter
3591dd59e0d5b3e99c1f54619dd78aa7dbba374e
<ide><path>actionpack/lib/action_controller/metal/strong_parameters.rb <ide> def to_h <ide> end <ide> end <ide> <add> # Convert all hashes in values into parameters, then yield each pair like <add> # the same way as <tt>Hash#each_pair</tt> <add> def each_pair(&block) <add> super do |key, value| <add> convert_hashes_to_parameters(key, value) <add> end <add> <add> super <add> end <add> <add> alias_method :each, :each_pair <add> <ide> # Attribute that keeps track of converted arrays, if any, to avoid double <ide> # looping in the common use case permit + mass-assignment. Defined in a <ide> # method to instantiate it only if needed. <ide> def permitted? <ide> # Person.new(params) # => #<Person id: nil, name: "Francesco"> <ide> def permit! <ide> each_pair do |key, value| <del> value = convert_hashes_to_parameters(key, value) <ide> Array.wrap(value).each do |v| <ide> v.permit! if v.respond_to? :permit! <ide> end <ide> def transform_keys # :nodoc: <ide> end <ide> end <ide> <add> # Deletes and returns a key-value pair from +Parameters+ whose key is equal <add> # to key. If the key is not found, returns the default value. If the <add> # optional code block is given and the key is not found, pass in the key <add> # and return the result of block. <add> def delete(key, &block) <add> convert_hashes_to_parameters(key, super, false) <add> end <add> <add> # Equivalent to Hash#keep_if, but returns nil if no changes were made. <add> def select!(&block) <add> convert_value_to_parameters(super) <add> end <add> <ide> # Returns an exact copy of the <tt>ActionController::Parameters</tt> <ide> # instance. +permitted+ state is kept on the duped object. <ide> # <ide><path>actionpack/test/controller/parameters/accessors_test.rb <ide> class ParametersAccessorsTest < ActiveSupport::TestCase <ide> @params.each { |key, value| assert_not(value.permitted?) if key == "person" } <ide> end <ide> <add> test "each_pair carries permitted status" do <add> @params.permit! <add> @params.each_pair { |key, value| assert(value.permitted?) if key == "person" } <add> end <add> <add> test "each_pair carries unpermitted status" do <add> @params.each_pair { |key, value| assert_not(value.permitted?) if key == "person" } <add> end <add> <ide> test "except retains permitted status" do <ide> @params.permit! <ide> assert @params.except(:person).permitted? <ide><path>actionpack/test/controller/parameters/mutators_test.rb <ide> class ParametersMutatorsTest < ActiveSupport::TestCase <ide> <ide> test "select! retains permitted status" do <ide> @params.permit! <del> assert @params.select! { |k| k == "person" }.permitted? <add> assert @params.select! { |k| k != "person" }.permitted? <ide> end <ide> <ide> test "select! retains unpermitted status" do <del> assert_not @params.select! { |k| k == "person" }.permitted? <add> assert_not @params.select! { |k| k != "person" }.permitted? <ide> end <ide> <ide> test "slice! retains permitted status" do
3
Go
Go
fix error formatting
a2eacff5c755d3257f453c9555526549bc3753b1
<ide><path>image/tarexport/load.go <ide> func (l *tarexporter) setParentID(id, parentID image.ID) error { <ide> return err <ide> } <ide> if !checkValidParent(img, parent) { <del> return fmt.Errorf("image %v is not a valid parent for %v", parent.ID, img.ID) <add> return fmt.Errorf("image %v is not a valid parent for %v", parent.ID(), img.ID()) <ide> } <ide> return l.is.SetParent(id, parentID) <ide> }
1
Text
Text
remove jquery version number from tutorial docs
9f3ef1b6ac2a22ca8be31866a41f9e60f006e9c2
<ide><path>docs/docs/tutorial.md <ide> When the component is first created, we want to GET some JSON from the server an <ide> ] <ide> ``` <ide> <del>We will use jQuery 1.5 to help make an asynchronous request to the server. <add>We will use jQuery to help make an asynchronous request to the server. <ide> <ide> Note: because this is becoming an AJAX application you'll need to develop your app using a web server rather than as a file sitting on your file system. The easiest way to do this is to run `python -m SimpleHTTPServer` in your application's directory. <ide>
1
Python
Python
add nodelocation import to fix location test
d359e3b3c6c52a4a32ab23367232145c893ed77e
<ide><path>test/__init__.py <ide> from cStringIO import StringIO <ide> from urllib2 import urlparse <ide> from cgi import parse_qs <del>from libcloud.base import Node, NodeImage, NodeSize <add>from libcloud.base import Node, NodeImage, NodeSize, NodeLocation <ide> from libcloud.types import NodeState <ide> import unittest <ide>
1
Ruby
Ruby
use null column for association key types
e8375a662bc47647f4bd39779ada018cc634fe97
<ide><path>activerecord/lib/active_record/associations/preloader/association.rb <ide> def key_conversion_required? <ide> end <ide> <ide> def association_key_type <del> column = @klass.column_types[association_key_name.to_s] <del> column && column.type <add> @klass.column_for_attribute(association_key_name).type <ide> end <ide> <ide> def owner_key_type <del> column = @model.column_types[owner_key_name.to_s] <del> column && column.type <add> @model.column_for_attribute(owner_key_name).type <ide> end <ide> <ide> def load_slices(slices) <ide><path>activerecord/lib/active_record/attribute_methods.rb <ide> module AttributeMethods <ide> include TimeZoneConversion <ide> include Dirty <ide> include Serialization <add> <add> delegate :column_for_attribute, to: :class <ide> end <ide> <ide> AttrNames = Module.new { <ide> def attribute_names <ide> [] <ide> end <ide> end <add> <add> # Returns the column object for the named attribute. Returns +nil+ if the <add> # named attribute not exists. <add> # <add> # class Person < ActiveRecord::Base <add> # end <add> # <add> # person = Person.new <add> # person.column_for_attribute(:name) # the result depends on the ConnectionAdapter <add> # # => #<ActiveRecord::ConnectionAdapters::SQLite3Column:0x007ff4ab083980 @name="name", @sql_type="varchar(255)", @null=true, ...> <add> # <add> # person.column_for_attribute(:nothing) <add> # # => #<ActiveRecord::ConnectionAdapters::Column:0xXXX @name=nil, @sql_type=nil, @cast_type=#<Type::Value>, ...> <add> def column_for_attribute(name) <add> name = name.to_s <add> columns_hash.fetch(name) do <add> ConnectionAdapters::Column.new(name, nil, Type::Value.new) <add> end <add> end <ide> end <ide> <ide> # If we haven't generated any methods yet, generate them, then <ide> def attribute_present?(attribute) <ide> !value.nil? && !(value.respond_to?(:empty?) && value.empty?) <ide> end <ide> <del> # Returns the column object for the named attribute. Returns +nil+ if the <del> # named attribute not exists. <del> # <del> # class Person < ActiveRecord::Base <del> # end <del> # <del> # person = Person.new <del> # person.column_for_attribute(:name) # the result depends on the ConnectionAdapter <del> # # => #<ActiveRecord::ConnectionAdapters::SQLite3Column:0x007ff4ab083980 @name="name", @sql_type="varchar(255)", @null=true, ...> <del> # <del> # person.column_for_attribute(:nothing) <del> # # => #<ActiveRecord::ConnectionAdapters::Column:0xXXX @name=nil, @sql_type=nil, @cast_type=#<Type::Value>, ...> <del> def column_for_attribute(name) <del> name = name.to_s <del> self.class.columns_hash.fetch(name) do <del> ConnectionAdapters::Column.new(name, nil, Type::Value.new) <del> end <del> end <del> <ide> # Returns the value of the attribute identified by <tt>attr_name</tt> after it has been typecast (for example, <ide> # "2004-12-12" in a date column is cast to a date object, like Date.new(2004, 12, 12)). It raises <ide> # <tt>ActiveModel::MissingAttributeError</tt> if the identified attribute is missing.
2
Javascript
Javascript
allow array like objects to be filtered
1b0d0fd8d00b42dffd798845fe0947d594372613
<ide><path>src/ng/filter/filter.js <ide> */ <ide> function filterFilter() { <ide> return function(array, expression, comparator) { <del> if (!isArray(array)) { <add> if (!isArrayLike(array)) { <ide> if (array == null) { <ide> return array; <ide> } else { <ide> function filterFilter() { <ide> return array; <ide> } <ide> <del> return array.filter(predicateFn); <add> return Array.prototype.filter.call(array, predicateFn); <ide> }; <ide> } <ide> <ide><path>test/ng/filter/filterSpec.js <ide> describe('Filter: filter', function() { <ide> toThrowMinErr('filter', 'notarray', 'Expected array but received: {"toString":null,"valueOf":null}'); <ide> }); <ide> <add> it('should not throw an error if used with an array like object', function() { <add> function getArguments() { <add> return arguments; <add> } <add> var argsObj = getArguments({name: 'Misko'}, {name: 'Igor'}, {name: 'Brad'}); <add> <add> var nodeList = jqLite("<p><span>Misko</span><span>Igor</span><span>Brad</span></p>")[0].childNodes; <add> function nodeFilterPredicate(node) { <add> return node.innerHTML.indexOf("I") !== -1; <add> } <add> <add> expect(filter(argsObj, 'i').length).toBe(2); <add> expect(filter('abc','b').length).toBe(1); <add> expect(filter(nodeList, nodeFilterPredicate).length).toBe(1); <add> <add> }); <add> <ide> <ide> it('should return undefined when the array is undefined', function() { <ide> expect(filter(undefined, {})).toBeUndefined();
2
Text
Text
update node version as specified in package.json
e942e1e988d71b86bade392ef53eeee108e92861
<ide><path>DEVELOPERS.md <ide> machine: <ide> * [Git](http://git-scm.com/): The [Github Guide to <ide> Installing Git][git-setup] is a good source of information. <ide> <del>* [Node.js v6.x (LTS)](http://nodejs.org): We use Node to generate the documentation, run a <add>* [Node.js v8.x (LTS)](http://nodejs.org): We use Node to generate the documentation, run a <ide> development web server, run tests, and generate distributable files. Depending on your system, <ide> you can install Node either from source or as a pre-packaged bundle. <ide>
1
Javascript
Javascript
fix typo in const name
0d95c7974c2bc44a891c3a8d159f4127ad2e7e92
<ide><path>src/helpers/helpers.dom.js <ide> function getContainerSize(canvas, width, height) { <ide> const rect = container.getBoundingClientRect(); // this is the border box of the container <ide> const containerStyle = getComputedStyle(container); <ide> const containerBorder = getPositionedStyle(containerStyle, 'border', 'width'); <del> const contarinerPadding = getPositionedStyle(containerStyle, 'padding'); <del> width = rect.width - contarinerPadding.width - containerBorder.width; <del> height = rect.height - contarinerPadding.height - containerBorder.height; <add> const containerPadding = getPositionedStyle(containerStyle, 'padding'); <add> width = rect.width - containerPadding.width - containerBorder.width; <add> height = rect.height - containerPadding.height - containerBorder.height; <ide> maxWidth = parseMaxStyle(containerStyle.maxWidth, container, 'clientWidth'); <ide> maxHeight = parseMaxStyle(containerStyle.maxHeight, container, 'clientHeight'); <ide> }
1
Text
Text
add v3.11.0 to changelog
b9a7e031df1c588453feac1f9b003c95d0ed995b
<ide><path>CHANGELOG.md <ide> # Ember Changelog <ide> <del>### v3.11.0-beta.4 (June 17, 2019) <del> <del>- [#17971](https://github.com/emberjs/ember.js/pull/17971) [BUGFIX] Ensure query param only link-to's work in error states. <del> <del>### v3.11.0-beta.3 (June 10, 2019) <del> <del>- [#18080](https://github.com/emberjs/ember.js/pull/18080) [BUGFIX] Fix `ember-template-compiler` compatibility with Fastboot. <del>- [#18071](https://github.com/emberjs/ember.js/pull/18071) [BUGFIX] Ensure modifiers do not run in FastBoot modes. <del> <del>### v3.11.0-beta.2 (June 3, 2019) <del> <del>- [#18064](https://github.com/emberjs/ember.js/pull/18064) [BUGFIX] Fix 'hasAttribute is not a function' when jQuery is disabled <del> <del>### v3.11.0-beta.1 (May 13, 2019) <add>### v3.11.0 (June 24, 2019) <ide> <ide> - [#17842](https://github.com/emberjs/ember.js/pull/17842) / [#17901](https://github.com/emberjs/ember.js/pull/17901) [FEATURE] Implement the [Forwarding Element Modifiers with "Splattributes" RFC](https://github.com/emberjs/rfcs/blob/master/text/0435-modifier-splattributes.md). <ide> - [#17941](https://github.com/emberjs/ember.js/pull/17941) / [#17961](https://github.com/emberjs/ember.js/pull/17961) [FEATURE] Implement the [{{fn}} rfc](https://github.com/emberjs/rfcs/blob/master/text/0470-fn-helper.md). <del>- [#17960](https://github.com/emberjs/ember.js/pull/17960) [FEATURE] Implement the [{{on}} modifier RFC](https://github.com/emberjs/rfcs/blob/master/text/0471-on-modifier.md) <del>- [#17858](https://github.com/emberjs/ember.js/pull/17858) [FEATURE] Implement the [Inject Parameter Normalization RFC](https://github.com/emberjs/rfcs/blob/master/text/0451-injection-parameter-normalization.md). <add>- [#17960](https://github.com/emberjs/ember.js/pull/17960) / [#18026](https://github.com/emberjs/ember.js/pull/18026) [FEATURE] Implement the [{{on}} modifier RFC](https://github.com/emberjs/rfcs/blob/master/text/0471-on-modifier.md) <add>- [#17858](https://github.com/emberjs/ember.js/pull/17858) / [#18026](https://github.com/emberjs/ember.js/pull/18026) [FEATURE] Implement the [Inject Parameter Normalization RFC](https://github.com/emberjs/rfcs/blob/master/text/0451-injection-parameter-normalization.md). <ide> - [#17910](https://github.com/emberjs/ember.js/pull/17910) [DEPRECATION] Add deprecation for Function.prototype extensions. <ide> - [#17845](https://github.com/emberjs/ember.js/pull/17845) [CLEANUP] Removes various deprecated APIs <ide> - [#17843](https://github.com/emberjs/ember.js/pull/17843) [CLEANUP] Remove deprecated intimate apis in the router <ide> - [#17940](https://github.com/emberjs/ember.js/pull/17940) [CLEANUP] Remove `sync` queue from @ember/runloop. <del>- [#18026](https://github.com/emberjs/ember.js/pull/18026) Enabling featured discussed in 2019-05-03 core team meeting. <add>- [#18110](https://github.com/emberjs/ember.js/pull/18110) [BUGFIX] Ensure calling `recompute` on a class-based helper causes it to recompute <ide> <ide> ### v3.10.2 (June 18, 2019) <ide>
1
Go
Go
adjust waitfordetachment to also accept networkid
ddcc220eb770a032c0ef02b16aac65fb74e784b9
<ide><path>libnetwork/cluster/provider.go <ide> type Provider interface { <ide> AttachNetwork(string, string, []string) (*network.NetworkingConfig, error) <ide> DetachNetwork(string, string) error <ide> UpdateAttachment(string, string, *network.NetworkingConfig) error <del> WaitForDetachment(context.Context, string, string, string) error <add> WaitForDetachment(context.Context, string, string, string, string) error <ide> } <ide><path>libnetwork/cmd/dnet/dnet.go <ide> func (d *dnetConnection) UpdateAttachment(string, string, *network.NetworkingCon <ide> return nil <ide> } <ide> <del>func (d *dnetConnection) WaitForDetachment(context.Context, string, string, string) error { <add>func (d *dnetConnection) WaitForDetachment(context.Context, string, string, string, string) error { <ide> return nil <ide> } <ide>
2
Python
Python
restore the 'jsonl' arg for init vectors
59294e91aa7b5cade545be4ada36ee0bc400f8bd
<ide><path>spacy/cli/init_pipeline.py <ide> def init_vectors_cli( <ide> truncate: int = Opt(0, "--truncate", "-t", help="Optional number of vectors to truncate to when reading in vectors file"), <ide> name: Optional[str] = Opt(None, "--name", "-n", help="Optional name for the word vectors, e.g. en_core_web_lg.vectors"), <ide> verbose: bool = Opt(False, "--verbose", "-V", "-VV", help="Display more information for debugging purposes"), <add> jsonl_loc: Optional[Path]=Opt(None, "--lexemes-jsonl", "-j", help="Location of JSONL-formatted attributes file") <ide> # fmt: on <ide> ): <ide> """Convert word vectors for use with spaCy. Will export an nlp object that <ide> def init_vectors_cli( <ide> util.logger.setLevel(logging.DEBUG if verbose else logging.INFO) <ide> msg.info(f"Creating blank nlp object for language '{lang}'") <ide> nlp = util.get_lang_class(lang)() <add> if jsonl_loc is not None: <add> lex_attrs = srsly.read_jsonl(jsonl_loc) <add> for attrs in lex_attrs: <add> if "settings" in attrs: <add> continue <add> lexeme = nlp.vocab[attrs["orth"]] <add> lexeme.set_attrs(**attrs) <ide> convert_vectors(nlp, vectors_loc, truncate=truncate, prune=prune, name=name) <ide> msg.good(f"Successfully converted {len(nlp.vocab.vectors)} vectors") <ide> nlp.to_disk(output_dir)
1
PHP
PHP
add deprecation note
bd61959a9b38c59a3381b4326d48c23cfd4a11e2
<ide><path>src/Controller/Component/FlashComponent.php <ide> class FlashComponent extends Component <ide> * The Session object instance <ide> * <ide> * @var \Cake\Http\Session <add> * @deprecated 3.8.0 This property will be removed in 4.0.0 in favor of `getSession()` method. <ide> */ <ide> protected $_session; <ide>
1
Ruby
Ruby
update docs on dirty.rb
4093238d0ab75403d6ec2b1a5300c80032e86c23
<ide><path>activemodel/lib/active_model/dirty.rb <ide> def initialize_dup(other) # :nodoc: <ide> @mutations_from_database = nil <ide> end <ide> <del> # Clears dirty data and moves +changes+ to +previously_changed+ and <add> # Clears dirty data and moves +changes+ to +previous_changes+ and <ide> # +mutations_from_database+ to +mutations_before_last_save+ respectively. <ide> def changes_applied <ide> unless defined?(@attributes)
1
Javascript
Javascript
explain groupedrows option in #each helper
a5ee696e1f8ba277483c2e0ada3799ec880051ed
<ide><path>packages/ember-handlebars/lib/helpers/each.js <ide> GroupedEach.prototype = { <ide> Each itemController will receive a reference to the current controller as <ide> a `parentController` property. <ide> <add> ### (Experimental) Grouped Each <add> <add> When used in conjunction with the experimental [group helper](https://github.com/emberjs/group-helper), <add> you can inform Handlebars to re-render an entire group of items instead of <add> re-rendering them one at a time (in the event that they are changed en masse <add> or an item is added/removed). <add> <add> ```handlebars <add> {{#group}} <add> {{#each people}} <add> {{firstName}} {{lastName}} <add> {{/each}} <add> {{/group}} <add> ``` <add> <add> This can be faster than the normal way that Handlebars re-renders items <add> in some cases. <add> <add> If for some reason you have a group with more than one `#each`, you can make <add> one of the collections be updated in normal (non-grouped) fashion by setting <add> the option `groupedRows=true` (counter-intuitive, I know). <add> <add> For example, <add> <add> ```handlebars <add> {{dealershipName}} <add> <add> {{#group}} <add> {{#each dealers}} <add> {{firstName}} {{lastName}} <add> {{/each}} <add> <add> {{#each car in cars groupedRows=true}} <add> {{car.make}} {{car.model}} {{car.color}} <add> {{/each}} <add> {{/group}} <add> ``` <add> Any change to `dealershipName` or the `dealers` collection will cause the <add> entire group to be re-rendered. However, changes to the `cars` collection <add> will be re-rendered individually (as normal). <add> <add> Note that `group` behavior is also disabled by specifying an `itemViewClass`. <add> <ide> @method each <ide> @for Ember.Handlebars.helpers <ide> @param [name] {String} name for item (used with `in`) <ide> @param [path] {String} path <ide> @param [options] {Object} Handlebars key/value pairs of options <ide> @param [options.itemViewClass] {String} a path to a view class used for each item <ide> @param [options.itemController] {String} name of a controller to be created for each item <add> @param [options.groupedRows] {boolean} enable normal item-by-item rendering when inside a `#group` helper <ide> */ <ide> Ember.Handlebars.registerHelper('each', function(path, options) { <ide> if (arguments.length === 4) {
1
Ruby
Ruby
add homebrew_prefix/{,s}bin to path
b085da91c37e3002f6c5eea8e97d5ce0eabb97bf
<ide><path>Library/Homebrew/formula.rb <ide> def run_post_install <ide> @prefix_returns_versioned_prefix = true <ide> build = self.build <ide> self.build = Tab.for_formula(self) <add> path_with_prefix = PATH.new(ENV["PATH"]) <add> .append(HOMEBREW_PREFIX/"bin") <add> .append(HOMEBREW_PREFIX/"sbin") <ide> <ide> new_env = { <ide> "TMPDIR" => HOMEBREW_TEMP, <ide> "TEMP" => HOMEBREW_TEMP, <ide> "TMP" => HOMEBREW_TEMP, <ide> "HOMEBREW_PATH" => nil, <add> "PATH" => path_with_prefix, <ide> } <ide> <ide> with_env(new_env) do
1
PHP
PHP
fix plugin loaded test
234bdf0dfbde5d98551b4ab87d917769490252ad
<ide><path>tests/TestCase/Command/PluginLoadedCommandTest.php <ide> * @since 3.1.9 <ide> * @license https://opensource.org/licenses/mit-license.php MIT License <ide> */ <del>namespace Cake\Test\TestCase\Shell; <add>namespace Cake\Test\TestCase\Command; <ide> <add>use Cake\Console\Command; <ide> use Cake\Core\Plugin; <del>use Cake\Shell\PluginShell; <add>use Cake\TestSuite\ConsoleIntegrationTestTrait; <ide> use Cake\TestSuite\TestCase; <ide> <ide> /** <del> * PluginShell test. <add> * PluginLoadedCommand test. <ide> */ <del>class PluginShellTest extends TestCase <add>class PluginLoadedCommandTest extends TestCase <ide> { <add> use ConsoleIntegrationTestTrait; <add> <ide> /** <del> * setup method <add> * setUp method <ide> * <ide> * @return void <ide> */ <ide> public function setUp(): void <ide> { <ide> parent::setUp(); <del> $this->io = $this->getMockBuilder('Cake\Console\ConsoleIo')->getMock(); <del> $this->shell = new PluginShell($this->io); <del> } <ide> <del> /** <del> * Test that the option parser is shaped right. <del> * <del> * @return void <del> */ <del> public function testGetOptionParser() <del> { <del> $this->shell->loadTasks(); <del> $parser = $this->shell->getOptionParser(); <del> $commands = $parser->subcommands(); <del> $this->assertArrayHasKey('unload', $commands); <del> $this->assertArrayHasKey('load', $commands); <del> $this->assertArrayHasKey('assets', $commands); <add> $this->useCommandRunner(); <add> $this->setAppNamespace(); <ide> } <ide> <ide> /** <ide> public function testGetOptionParser() <ide> */ <ide> public function testLoaded() <ide> { <del> $array = Plugin::loaded(); <add> $expected = Plugin::loaded(); <ide> <del> $this->io->expects($this->at(0)) <del> ->method('out') <del> ->with($array); <add> $this->exec('plugin loaded'); <add> $this->assertExitCode(Command::CODE_SUCCESS); <ide> <del> $this->shell->loaded(); <add> foreach ($expected as $value) { <add> $this->assertOutputContains($value); <add> } <ide> } <ide> }
1
Javascript
Javascript
use prop instead of attr to make git query happy
c9edfccbcf3b172228d3e2ba85c3d2cc3a4ebe7a
<ide><path>packages/ember-handlebars/tests/controls/select_test.js <ide> test("select element should correctly initialize and update selectedIndex and bo <ide> equal(selectEl.selectedIndex, 2, "Precond: The DOM reflects the correct selection"); <ide> <ide> select.$('option:eq(2)').removeAttr('selected'); <del> select.$('option:eq(1)').attr('selected', true); <add> select.$('option:eq(1)').prop('selected', true); <ide> select.$().trigger('change'); <ide> <ide> equal(view.get('val'), 'w', "Updated bound property is correct");
1
Python
Python
add unit_divisor to downloads
21468337673f6f93c1761580195e2cfa8d43774e
<ide><path>src/transformers/file_utils.py <ide> def http_get(url: str, temp_file: BinaryIO, proxies=None, resume_size=0, headers <ide> progress = tqdm( <ide> unit="B", <ide> unit_scale=True, <add> unit_divisor=1024, <ide> total=total, <ide> initial=resume_size, <ide> desc="Downloading",
1
Ruby
Ruby
add cache to factory
893474d0374125c832f06e3d4e90c847095e62e7
<ide><path>Library/Homebrew/formulary.rb <ide> module Formulary <ide> extend Cachable <ide> <add> def self.enable_factory_cache! <add> @factory_cache = true <add> end <add> <add> def self.factory_cached? <add> !@factory_cache.nil? <add> end <add> <ide> def self.formula_class_defined?(path) <ide> cache.key?(path) <ide> end <ide> def klass <ide> def self.factory(ref, spec = :stable, alias_path: nil, from: nil) <ide> raise ArgumentError, "Formulae must have a ref!" unless ref <ide> <del> loader_for(ref, from: from).get_formula(spec, alias_path: alias_path) <add> cache_key = "#{ref}-#{spec}-#{alias_path}-#{from}" <add> if factory_cached? && cache[:formulary_factory] && <add> cache[:formulary_factory][cache_key] <add> return cache[:formulary_factory][cache_key] <add> end <add> <add> formula = loader_for(ref, from: from).get_formula(spec, alias_path: alias_path) <add> if factory_cached? <add> cache[:formulary_factory] ||= {} <add> cache[:formulary_factory][cache_key] ||= formula <add> end <add> formula <ide> end <ide> <ide> # Return a Formula instance for the given rack.
1
Python
Python
pass sqlalchemy engine options to fab based ui
91484b938f0b6f943404f1aeb3e63b61b808cfe9
<ide><path>airflow/settings.py <ide> def configure_orm(disable_connection_pool=False): <ide> log.debug("Setting up DB connection pool (PID %s)", os.getpid()) <ide> global engine <ide> global Session <del> engine_args = {} <add> engine_args = prepare_engine_args(disable_connection_pool) <add> <add> # Allow the user to specify an encoding for their DB otherwise default <add> # to utf-8 so jobs & users with non-latin1 characters can still use us. <add> engine_args['encoding'] = conf.get('core', 'SQL_ENGINE_ENCODING', fallback='utf-8') <add> <add> if conf.has_option('core', 'sql_alchemy_connect_args'): <add> connect_args = conf.getimport('core', 'sql_alchemy_connect_args') <add> else: <add> connect_args = {} <add> <add> engine = create_engine(SQL_ALCHEMY_CONN, connect_args=connect_args, **engine_args) <add> setup_event_handlers(engine) <add> <add> Session = scoped_session(sessionmaker( <add> autocommit=False, <add> autoflush=False, <add> bind=engine, <add> expire_on_commit=False, <add> )) <add> <ide> <add>def prepare_engine_args(disable_connection_pool=False): <add> """Prepare SQLAlchemy engine args""" <add> engine_args = {} <ide> pool_connections = conf.getboolean('core', 'SQL_ALCHEMY_POOL_ENABLED') <ide> if disable_connection_pool or not pool_connections: <ide> engine_args['poolclass'] = NullPool <del> log.debug("settings.configure_orm(): Using NullPool") <add> log.debug("settings.prepare_engine_args(): Using NullPool") <ide> elif 'sqlite' not in SQL_ALCHEMY_CONN: <ide> # Pool size engine args not supported by sqlite. <ide> # If no config value is defined for the pool size, select a reasonable value. <ide> def configure_orm(disable_connection_pool=False): <ide> # https://docs.sqlalchemy.org/en/13/core/pooling.html#disconnect-handling-pessimistic <ide> pool_pre_ping = conf.getboolean('core', 'SQL_ALCHEMY_POOL_PRE_PING', fallback=True) <ide> <del> log.debug("settings.configure_orm(): Using pool settings. pool_size=%d, max_overflow=%d, " <add> log.debug("settings.prepare_engine_args(): Using pool settings. pool_size=%d, max_overflow=%d, " <ide> "pool_recycle=%d, pid=%d", pool_size, max_overflow, pool_recycle, os.getpid()) <ide> engine_args['pool_size'] = pool_size <ide> engine_args['pool_recycle'] = pool_recycle <ide> engine_args['pool_pre_ping'] = pool_pre_ping <ide> engine_args['max_overflow'] = max_overflow <del> <del> # Allow the user to specify an encoding for their DB otherwise default <del> # to utf-8 so jobs & users with non-latin1 characters can still use us. <del> engine_args['encoding'] = conf.get('core', 'SQL_ENGINE_ENCODING', fallback='utf-8') <del> <del> if conf.has_option('core', 'sql_alchemy_connect_args'): <del> connect_args = conf.getimport('core', 'sql_alchemy_connect_args') <del> else: <del> connect_args = {} <del> <del> engine = create_engine(SQL_ALCHEMY_CONN, connect_args=connect_args, **engine_args) <del> setup_event_handlers(engine) <del> <del> Session = scoped_session( <del> sessionmaker(autocommit=False, <del> autoflush=False, <del> bind=engine, <del> expire_on_commit=False)) <add> return engine_args <ide> <ide> <ide> def dispose_orm(): <ide><path>airflow/www/app.py <ide> def create_app(config=None, testing=False, app_name="Airflow"): <ide> if config: <ide> flask_app.config.from_mapping(config) <ide> <add> if 'SQLALCHEMY_ENGINE_OPTIONS' not in flask_app.config: <add> flask_app.config['SQLALCHEMY_ENGINE_OPTIONS'] = settings.prepare_engine_args() <add> <ide> # Configure the JSON encoder used by `|tojson` filter from Flask <ide> flask_app.json_encoder = AirflowJsonEncoder <ide> <ide><path>tests/www/test_app.py <ide> import unittest <ide> from unittest import mock <ide> <add>import pytest <ide> from werkzeug.routing import Rule <ide> from werkzeug.test import create_environ <ide> from werkzeug.wrappers import Response <ide> def debug_view(): <ide> <ide> self.assertEqual(b"success", response.get_data()) <ide> self.assertEqual(response.status_code, 200) <add> <add> @conf_vars({ <add> ('core', 'sql_alchemy_pool_enabled'): 'True', <add> ('core', 'sql_alchemy_pool_size'): '3', <add> ('core', 'sql_alchemy_max_overflow'): '5', <add> ('core', 'sql_alchemy_pool_recycle'): '120', <add> ('core', 'sql_alchemy_pool_pre_ping'): 'True', <add> }) <add> @mock.patch("airflow.www.app.app", None) <add> @pytest.mark.backend("mysql", "postgres") <add> def test_should_set_sqlalchemy_engine_options(self): <add> app = application.cached_app(testing=True) <add> engine_params = { <add> 'pool_size': 3, <add> 'pool_recycle': 120, <add> 'pool_pre_ping': True, <add> 'max_overflow': 5 <add> } <add> self.assertEqual(app.config['SQLALCHEMY_ENGINE_OPTIONS'], engine_params)
3
Python
Python
use theme colorful
6e1e8e8915f991de8629013b6c70c88bb505e35e
<ide><path>docs/conf.py <ide> } <ide> <ide> # The name of the Pygments (syntax highlighting) style to use. <del>pygments_style = 'tango' <add>pygments_style = 'colorful' <ide> <ide> # Add any paths that contain custom static files (such as style sheets) here, <ide> # relative to this directory. They are copied after the builtin static files,
1
Go
Go
move parsedockerdaemonhost to opts/ package
9b9959105499248ab6cdbfde2277ed1bd83233e3
<ide><path>opts/hosts.go <add>package opts <add> <add>import ( <add> "fmt" <add> "net" <add> "net/url" <add> "runtime" <add> "strconv" <add> "strings" <add>) <add> <add>var ( <add> // DefaultHTTPPort Default HTTP Port used if only the protocol is provided to -H flag e.g. docker daemon -H tcp:// <add> // TODO Windows. DefaultHTTPPort is only used on Windows if a -H parameter <add> // is not supplied. A better longer term solution would be to use a named <add> // pipe as the default on the Windows daemon. <add> // These are the IANA registered port numbers for use with Docker <add> // see http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml?search=docker <add> DefaultHTTPPort = 2375 // Default HTTP Port <add> // DefaultTLSHTTPPort Default HTTP Port used when TLS enabled <add> DefaultTLSHTTPPort = 2376 // Default TLS encrypted HTTP Port <add> // DefaultUnixSocket Path for the unix socket. <add> // Docker daemon by default always listens on the default unix socket <add> DefaultUnixSocket = "/var/run/docker.sock" <add> // DefaultTCPHost constant defines the default host string used by docker on Windows <add> DefaultTCPHost = fmt.Sprintf("tcp://%s:%d", DefaultHTTPHost, DefaultHTTPPort) <add> // DefaultTLSHost constant defines the default host string used by docker for TLS sockets <add> DefaultTLSHost = fmt.Sprintf("tcp://%s:%d", DefaultHTTPHost, DefaultTLSHTTPPort) <add>) <add> <add>// ValidateHost validates that the specified string is a valid host and returns it. <add>func ValidateHost(val string) (string, error) { <add> _, err := parseDockerDaemonHost(DefaultTCPHost, DefaultTLSHost, DefaultUnixSocket, "", val) <add> if err != nil { <add> return val, err <add> } <add> // Note: unlike most flag validators, we don't return the mutated value here <add> // we need to know what the user entered later (using ParseHost) to adjust for tls <add> return val, nil <add>} <add> <add>// ParseHost and set defaults for a Daemon host string <add>func ParseHost(defaultHost, val string) (string, error) { <add> host, err := parseDockerDaemonHost(DefaultTCPHost, DefaultTLSHost, DefaultUnixSocket, defaultHost, val) <add> if err != nil { <add> return val, err <add> } <add> return host, nil <add>} <add> <add>// parseDockerDaemonHost parses the specified address and returns an address that will be used as the host. <add>// Depending of the address specified, will use the defaultTCPAddr or defaultUnixAddr <add>// defaultUnixAddr must be a absolute file path (no `unix://` prefix) <add>// defaultTCPAddr must be the full `tcp://host:port` form <add>func parseDockerDaemonHost(defaultTCPAddr, defaultTLSHost, defaultUnixAddr, defaultAddr, addr string) (string, error) { <add> addr = strings.TrimSpace(addr) <add> if addr == "" { <add> if defaultAddr == defaultTLSHost { <add> return defaultTLSHost, nil <add> } <add> if runtime.GOOS != "windows" { <add> return fmt.Sprintf("unix://%s", defaultUnixAddr), nil <add> } <add> return defaultTCPAddr, nil <add> } <add> addrParts := strings.Split(addr, "://") <add> if len(addrParts) == 1 { <add> addrParts = []string{"tcp", addrParts[0]} <add> } <add> <add> switch addrParts[0] { <add> case "tcp": <add> return parseTCPAddr(addrParts[1], defaultTCPAddr) <add> case "unix": <add> return parseUnixAddr(addrParts[1], defaultUnixAddr) <add> case "fd": <add> return addr, nil <add> default: <add> return "", fmt.Errorf("Invalid bind address format: %s", addr) <add> } <add>} <add> <add>// parseUnixAddr parses and validates that the specified address is a valid UNIX <add>// socket address. It returns a formatted UNIX socket address, either using the <add>// address parsed from addr, or the contents of defaultAddr if addr is a blank <add>// string. <add>func parseUnixAddr(addr string, defaultAddr string) (string, error) { <add> addr = strings.TrimPrefix(addr, "unix://") <add> if strings.Contains(addr, "://") { <add> return "", fmt.Errorf("Invalid proto, expected unix: %s", addr) <add> } <add> if addr == "" { <add> addr = defaultAddr <add> } <add> return fmt.Sprintf("unix://%s", addr), nil <add>} <add> <add>// parseTCPAddr parses and validates that the specified address is a valid TCP <add>// address. It returns a formatted TCP address, either using the address parsed <add>// from tryAddr, or the contents of defaultAddr if tryAddr is a blank string. <add>// tryAddr is expected to have already been Trim()'d <add>// defaultAddr must be in the full `tcp://host:port` form <add>func parseTCPAddr(tryAddr string, defaultAddr string) (string, error) { <add> if tryAddr == "" || tryAddr == "tcp://" { <add> return defaultAddr, nil <add> } <add> addr := strings.TrimPrefix(tryAddr, "tcp://") <add> if strings.Contains(addr, "://") || addr == "" { <add> return "", fmt.Errorf("Invalid proto, expected tcp: %s", tryAddr) <add> } <add> <add> defaultAddr = strings.TrimPrefix(defaultAddr, "tcp://") <add> defaultHost, defaultPort, err := net.SplitHostPort(defaultAddr) <add> if err != nil { <add> return "", err <add> } <add> // url.Parse fails for trailing colon on IPv6 brackets on Go 1.5, but <add> // not 1.4. See https://github.com/golang/go/issues/12200 and <add> // https://github.com/golang/go/issues/6530. <add> if strings.HasSuffix(addr, "]:") { <add> addr += defaultPort <add> } <add> <add> u, err := url.Parse("tcp://" + addr) <add> if err != nil { <add> return "", err <add> } <add> <add> host, port, err := net.SplitHostPort(u.Host) <add> if err != nil { <add> return "", fmt.Errorf("Invalid bind address format: %s", tryAddr) <add> } <add> <add> if host == "" { <add> host = defaultHost <add> } <add> if port == "" { <add> port = defaultPort <add> } <add> p, err := strconv.Atoi(port) <add> if err != nil && p == 0 { <add> return "", fmt.Errorf("Invalid bind address format: %s", tryAddr) <add> } <add> <add> return fmt.Sprintf("tcp://%s%s", net.JoinHostPort(host, port), u.Path), nil <add>} <ide><path>opts/hosts_test.go <add>package opts <add> <add>import ( <add> "runtime" <add> "testing" <add>) <add> <add>func TestParseHost(t *testing.T) { <add> invalid := map[string]string{ <add> "anything": "Invalid bind address format: anything", <add> "something with spaces": "Invalid bind address format: something with spaces", <add> "://": "Invalid bind address format: ://", <add> "unknown://": "Invalid bind address format: unknown://", <add> "tcp://:port": "Invalid bind address format: :port", <add> "tcp://invalid": "Invalid bind address format: invalid", <add> "tcp://invalid:port": "Invalid bind address format: invalid:port", <add> } <add> const defaultHTTPHost = "tcp://127.0.0.1:2375" <add> var defaultHOST = "unix:///var/run/docker.sock" <add> <add> if runtime.GOOS == "windows" { <add> defaultHOST = defaultHTTPHost <add> } <add> valid := map[string]string{ <add> "": defaultHOST, <add> "fd://": "fd://", <add> "fd://something": "fd://something", <add> "tcp://host:": "tcp://host:2375", <add> "tcp://": "tcp://localhost:2375", <add> "tcp://:2375": "tcp://localhost:2375", // default ip address <add> "tcp://:2376": "tcp://localhost:2376", // default ip address <add> "tcp://0.0.0.0:8080": "tcp://0.0.0.0:8080", <add> "tcp://192.168.0.0:12000": "tcp://192.168.0.0:12000", <add> "tcp://192.168:8080": "tcp://192.168:8080", <add> "tcp://0.0.0.0:1234567890": "tcp://0.0.0.0:1234567890", // yeah it's valid :P <add> "tcp://docker.com:2375": "tcp://docker.com:2375", <add> "unix://": "unix:///var/run/docker.sock", // default unix:// value <add> "unix://path/to/socket": "unix://path/to/socket", <add> } <add> <add> for value, errorMessage := range invalid { <add> if _, err := ParseHost(defaultHTTPHost, value); err == nil || err.Error() != errorMessage { <add> t.Fatalf("Expected an error for %v with [%v], got [%v]", value, errorMessage, err) <add> } <add> } <add> for value, expected := range valid { <add> if actual, err := ParseHost(defaultHTTPHost, value); err != nil || actual != expected { <add> t.Fatalf("Expected for %v [%v], got [%v, %v]", value, expected, actual, err) <add> } <add> } <add>} <add> <add>func TestParseDockerDaemonHost(t *testing.T) { <add> var ( <add> defaultHTTPHost = "tcp://localhost:2375" <add> defaultHTTPSHost = "tcp://localhost:2376" <add> defaultUnix = "/var/run/docker.sock" <add> defaultHOST = "unix:///var/run/docker.sock" <add> ) <add> if runtime.GOOS == "windows" { <add> defaultHOST = defaultHTTPHost <add> } <add> invalids := map[string]string{ <add> "0.0.0.0": "Invalid bind address format: 0.0.0.0", <add> "tcp:a.b.c.d": "Invalid bind address format: tcp:a.b.c.d", <add> "tcp:a.b.c.d/path": "Invalid bind address format: tcp:a.b.c.d/path", <add> "udp://127.0.0.1": "Invalid bind address format: udp://127.0.0.1", <add> "udp://127.0.0.1:2375": "Invalid bind address format: udp://127.0.0.1:2375", <add> "tcp://unix:///run/docker.sock": "Invalid bind address format: unix", <add> "tcp": "Invalid bind address format: tcp", <add> "unix": "Invalid bind address format: unix", <add> "fd": "Invalid bind address format: fd", <add> } <add> valids := map[string]string{ <add> "0.0.0.1:": "tcp://0.0.0.1:2375", <add> "0.0.0.1:5555": "tcp://0.0.0.1:5555", <add> "0.0.0.1:5555/path": "tcp://0.0.0.1:5555/path", <add> "[::1]:": "tcp://[::1]:2375", <add> "[::1]:5555/path": "tcp://[::1]:5555/path", <add> "[0:0:0:0:0:0:0:1]:": "tcp://[0:0:0:0:0:0:0:1]:2375", <add> "[0:0:0:0:0:0:0:1]:5555/path": "tcp://[0:0:0:0:0:0:0:1]:5555/path", <add> ":6666": "tcp://localhost:6666", <add> ":6666/path": "tcp://localhost:6666/path", <add> "": defaultHOST, <add> " ": defaultHOST, <add> " ": defaultHOST, <add> "tcp://": defaultHTTPHost, <add> "tcp://:7777": "tcp://localhost:7777", <add> "tcp://:7777/path": "tcp://localhost:7777/path", <add> " tcp://:7777/path ": "tcp://localhost:7777/path", <add> "unix:///run/docker.sock": "unix:///run/docker.sock", <add> "unix://": "unix:///var/run/docker.sock", <add> "fd://": "fd://", <add> "fd://something": "fd://something", <add> "localhost:": "tcp://localhost:2375", <add> "localhost:5555": "tcp://localhost:5555", <add> "localhost:5555/path": "tcp://localhost:5555/path", <add> } <add> for invalidAddr, expectedError := range invalids { <add> if addr, err := parseDockerDaemonHost(defaultHTTPHost, defaultHTTPSHost, defaultUnix, "", invalidAddr); err == nil || err.Error() != expectedError { <add> t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr) <add> } <add> } <add> for validAddr, expectedAddr := range valids { <add> if addr, err := parseDockerDaemonHost(defaultHTTPHost, defaultHTTPSHost, defaultUnix, "", validAddr); err != nil || addr != expectedAddr { <add> t.Errorf("%v -> expected %v, got (%v) addr (%v)", validAddr, expectedAddr, err, addr) <add> } <add> } <add>} <add> <add>func TestParseTCP(t *testing.T) { <add> var ( <add> defaultHTTPHost = "tcp://127.0.0.1:2376" <add> ) <add> invalids := map[string]string{ <add> "0.0.0.0": "Invalid bind address format: 0.0.0.0", <add> "tcp:a.b.c.d": "Invalid bind address format: tcp:a.b.c.d", <add> "tcp:a.b.c.d/path": "Invalid bind address format: tcp:a.b.c.d/path", <add> "udp://127.0.0.1": "Invalid proto, expected tcp: udp://127.0.0.1", <add> "udp://127.0.0.1:2375": "Invalid proto, expected tcp: udp://127.0.0.1:2375", <add> } <add> valids := map[string]string{ <add> "": defaultHTTPHost, <add> "tcp://": defaultHTTPHost, <add> "0.0.0.1:": "tcp://0.0.0.1:2376", <add> "0.0.0.1:5555": "tcp://0.0.0.1:5555", <add> "0.0.0.1:5555/path": "tcp://0.0.0.1:5555/path", <add> ":6666": "tcp://127.0.0.1:6666", <add> ":6666/path": "tcp://127.0.0.1:6666/path", <add> "tcp://:7777": "tcp://127.0.0.1:7777", <add> "tcp://:7777/path": "tcp://127.0.0.1:7777/path", <add> "[::1]:": "tcp://[::1]:2376", <add> "[::1]:5555": "tcp://[::1]:5555", <add> "[::1]:5555/path": "tcp://[::1]:5555/path", <add> "[0:0:0:0:0:0:0:1]:": "tcp://[0:0:0:0:0:0:0:1]:2376", <add> "[0:0:0:0:0:0:0:1]:5555": "tcp://[0:0:0:0:0:0:0:1]:5555", <add> "[0:0:0:0:0:0:0:1]:5555/path": "tcp://[0:0:0:0:0:0:0:1]:5555/path", <add> "localhost:": "tcp://localhost:2376", <add> "localhost:5555": "tcp://localhost:5555", <add> "localhost:5555/path": "tcp://localhost:5555/path", <add> } <add> for invalidAddr, expectedError := range invalids { <add> if addr, err := parseTCPAddr(invalidAddr, defaultHTTPHost); err == nil || err.Error() != expectedError { <add> t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr) <add> } <add> } <add> for validAddr, expectedAddr := range valids { <add> if addr, err := parseTCPAddr(validAddr, defaultHTTPHost); err != nil || addr != expectedAddr { <add> t.Errorf("%v -> expected %v, got %v and addr %v", validAddr, expectedAddr, err, addr) <add> } <add> } <add>} <add> <add>func TestParseInvalidUnixAddrInvalid(t *testing.T) { <add> if _, err := parseUnixAddr("tcp://127.0.0.1", "unix:///var/run/docker.sock"); err == nil || err.Error() != "Invalid proto, expected unix: tcp://127.0.0.1" { <add> t.Fatalf("Expected an error, got %v", err) <add> } <add> if _, err := parseUnixAddr("unix://tcp://127.0.0.1", "/var/run/docker.sock"); err == nil || err.Error() != "Invalid proto, expected unix: tcp://127.0.0.1" { <add> t.Fatalf("Expected an error, got %v", err) <add> } <add> if v, err := parseUnixAddr("", "/var/run/docker.sock"); err != nil || v != "unix:///var/run/docker.sock" { <add> t.Fatalf("Expected an %v, got %v", v, "unix:///var/run/docker.sock") <add> } <add>} <ide><path>opts/opts.go <ide> import ( <ide> var ( <ide> alphaRegexp = regexp.MustCompile(`[a-zA-Z]`) <ide> domainRegexp = regexp.MustCompile(`^(:?(:?[a-zA-Z0-9]|(:?[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9]))(:?\.(:?[a-zA-Z0-9]|(:?[a-zA-Z0-9][a-zA-Z0-9\-]*[a-zA-Z0-9])))*)\.?\s*$`) <del> // DefaultHTTPPort Default HTTP Port used if only the protocol is provided to -H flag e.g. docker daemon -H tcp:// <del> // TODO Windows. DefaultHTTPPort is only used on Windows if a -H parameter <del> // is not supplied. A better longer term solution would be to use a named <del> // pipe as the default on the Windows daemon. <del> // These are the IANA registered port numbers for use with Docker <del> // see http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xhtml?search=docker <del> DefaultHTTPPort = 2375 // Default HTTP Port <del> // DefaultTLSHTTPPort Default HTTP Port used when TLS enabled <del> DefaultTLSHTTPPort = 2376 // Default TLS encrypted HTTP Port <del> // DefaultUnixSocket Path for the unix socket. <del> // Docker daemon by default always listens on the default unix socket <del> DefaultUnixSocket = "/var/run/docker.sock" <del> // DefaultTCPHost constant defines the default host string used by docker on Windows <del> DefaultTCPHost = fmt.Sprintf("tcp://%s:%d", DefaultHTTPHost, DefaultHTTPPort) <del> // DefaultTLSHost constant defines the default host string used by docker for TLS sockets <del> DefaultTLSHost = fmt.Sprintf("tcp://%s:%d", DefaultHTTPHost, DefaultTLSHTTPPort) <ide> ) <ide> <ide> // ListOpts holds a list of values and a validation function. <ide> func ValidateLabel(val string) (string, error) { <ide> return val, nil <ide> } <ide> <del>// ValidateHost validates that the specified string is a valid host and returns it. <del>func ValidateHost(val string) (string, error) { <del> _, err := parsers.ParseDockerDaemonHost(DefaultTCPHost, DefaultTLSHost, DefaultUnixSocket, "", val) <del> if err != nil { <del> return val, err <del> } <del> // Note: unlike most flag validators, we don't return the mutated value here <del> // we need to know what the user entered later (using ParseHost) to adjust for tls <del> return val, nil <del>} <del> <del>// ParseHost and set defaults for a Daemon host string <del>func ParseHost(defaultHost, val string) (string, error) { <del> host, err := parsers.ParseDockerDaemonHost(DefaultTCPHost, DefaultTLSHost, DefaultUnixSocket, defaultHost, val) <del> if err != nil { <del> return val, err <del> } <del> return host, nil <del>} <del> <ide> func doesEnvExist(name string) bool { <ide> for _, entry := range os.Environ() { <ide> parts := strings.SplitN(entry, "=", 2) <ide><path>opts/opts_test.go <ide> package opts <ide> import ( <ide> "fmt" <ide> "os" <del> "runtime" <ide> "strings" <ide> "testing" <ide> ) <ide> func TestValidateLabel(t *testing.T) { <ide> } <ide> } <ide> <del>func TestParseHost(t *testing.T) { <del> invalid := map[string]string{ <del> "anything": "Invalid bind address format: anything", <del> "something with spaces": "Invalid bind address format: something with spaces", <del> "://": "Invalid bind address format: ://", <del> "unknown://": "Invalid bind address format: unknown://", <del> "tcp://:port": "Invalid bind address format: :port", <del> "tcp://invalid": "Invalid bind address format: invalid", <del> "tcp://invalid:port": "Invalid bind address format: invalid:port", <del> } <del> const defaultHTTPHost = "tcp://127.0.0.1:2375" <del> var defaultHOST = "unix:///var/run/docker.sock" <del> <del> if runtime.GOOS == "windows" { <del> defaultHOST = defaultHTTPHost <del> } <del> valid := map[string]string{ <del> "": defaultHOST, <del> "fd://": "fd://", <del> "fd://something": "fd://something", <del> "tcp://host:": "tcp://host:2375", <del> "tcp://": "tcp://localhost:2375", <del> "tcp://:2375": "tcp://localhost:2375", // default ip address <del> "tcp://:2376": "tcp://localhost:2376", // default ip address <del> "tcp://0.0.0.0:8080": "tcp://0.0.0.0:8080", <del> "tcp://192.168.0.0:12000": "tcp://192.168.0.0:12000", <del> "tcp://192.168:8080": "tcp://192.168:8080", <del> "tcp://0.0.0.0:1234567890": "tcp://0.0.0.0:1234567890", // yeah it's valid :P <del> "tcp://docker.com:2375": "tcp://docker.com:2375", <del> "unix://": "unix:///var/run/docker.sock", // default unix:// value <del> "unix://path/to/socket": "unix://path/to/socket", <del> } <del> <del> for value, errorMessage := range invalid { <del> if _, err := ParseHost(defaultHTTPHost, value); err == nil || err.Error() != errorMessage { <del> t.Fatalf("Expected an error for %v with [%v], got [%v]", value, errorMessage, err) <del> } <del> } <del> for value, expected := range valid { <del> if actual, err := ParseHost(defaultHTTPHost, value); err != nil || actual != expected { <del> t.Fatalf("Expected for %v [%v], got [%v, %v]", value, expected, actual, err) <del> } <del> } <del>} <del> <ide> func logOptsValidator(val string) (string, error) { <ide> allowedKeys := map[string]string{"max-size": "1", "max-file": "2"} <ide> vals := strings.Split(val, "=") <ide><path>pkg/parsers/parsers.go <ide> package parsers <ide> <ide> import ( <ide> "fmt" <del> "net" <del> "net/url" <ide> "path" <del> "runtime" <ide> "strconv" <ide> "strings" <ide> ) <ide> <del>// ParseDockerDaemonHost parses the specified address and returns an address that will be used as the host. <del>// Depending of the address specified, will use the defaultTCPAddr or defaultUnixAddr <del>// defaultUnixAddr must be a absolute file path (no `unix://` prefix) <del>// defaultTCPAddr must be the full `tcp://host:port` form <del>func ParseDockerDaemonHost(defaultTCPAddr, defaultTLSHost, defaultUnixAddr, defaultAddr, addr string) (string, error) { <del> addr = strings.TrimSpace(addr) <del> if addr == "" { <del> if defaultAddr == defaultTLSHost { <del> return defaultTLSHost, nil <del> } <del> if runtime.GOOS != "windows" { <del> return fmt.Sprintf("unix://%s", defaultUnixAddr), nil <del> } <del> return defaultTCPAddr, nil <del> } <del> addrParts := strings.Split(addr, "://") <del> if len(addrParts) == 1 { <del> addrParts = []string{"tcp", addrParts[0]} <del> } <del> <del> switch addrParts[0] { <del> case "tcp": <del> return ParseTCPAddr(addrParts[1], defaultTCPAddr) <del> case "unix": <del> return ParseUnixAddr(addrParts[1], defaultUnixAddr) <del> case "fd": <del> return addr, nil <del> default: <del> return "", fmt.Errorf("Invalid bind address format: %s", addr) <del> } <del>} <del> <del>// ParseUnixAddr parses and validates that the specified address is a valid UNIX <del>// socket address. It returns a formatted UNIX socket address, either using the <del>// address parsed from addr, or the contents of defaultAddr if addr is a blank <del>// string. <del>func ParseUnixAddr(addr string, defaultAddr string) (string, error) { <del> addr = strings.TrimPrefix(addr, "unix://") <del> if strings.Contains(addr, "://") { <del> return "", fmt.Errorf("Invalid proto, expected unix: %s", addr) <del> } <del> if addr == "" { <del> addr = defaultAddr <del> } <del> return fmt.Sprintf("unix://%s", addr), nil <del>} <del> <del>// ParseTCPAddr parses and validates that the specified address is a valid TCP <del>// address. It returns a formatted TCP address, either using the address parsed <del>// from tryAddr, or the contents of defaultAddr if tryAddr is a blank string. <del>// tryAddr is expected to have already been Trim()'d <del>// defaultAddr must be in the full `tcp://host:port` form <del>func ParseTCPAddr(tryAddr string, defaultAddr string) (string, error) { <del> if tryAddr == "" || tryAddr == "tcp://" { <del> return defaultAddr, nil <del> } <del> addr := strings.TrimPrefix(tryAddr, "tcp://") <del> if strings.Contains(addr, "://") || addr == "" { <del> return "", fmt.Errorf("Invalid proto, expected tcp: %s", tryAddr) <del> } <del> <del> defaultAddr = strings.TrimPrefix(defaultAddr, "tcp://") <del> defaultHost, defaultPort, err := net.SplitHostPort(defaultAddr) <del> if err != nil { <del> return "", err <del> } <del> // url.Parse fails for trailing colon on IPv6 brackets on Go 1.5, but <del> // not 1.4. See https://github.com/golang/go/issues/12200 and <del> // https://github.com/golang/go/issues/6530. <del> if strings.HasSuffix(addr, "]:") { <del> addr += defaultPort <del> } <del> <del> u, err := url.Parse("tcp://" + addr) <del> if err != nil { <del> return "", err <del> } <del> <del> host, port, err := net.SplitHostPort(u.Host) <del> if err != nil { <del> return "", fmt.Errorf("Invalid bind address format: %s", tryAddr) <del> } <del> <del> if host == "" { <del> host = defaultHost <del> } <del> if port == "" { <del> port = defaultPort <del> } <del> p, err := strconv.Atoi(port) <del> if err != nil && p == 0 { <del> return "", fmt.Errorf("Invalid bind address format: %s", tryAddr) <del> } <del> <del> return fmt.Sprintf("tcp://%s%s", net.JoinHostPort(host, port), u.Path), nil <del>} <del> <ide> // PartParser parses and validates the specified string (data) using the specified template <ide> // e.g. ip:public:private -> 192.168.0.1:80:8000 <ide> func PartParser(template, data string) (map[string]string, error) { <ide><path>pkg/parsers/parsers_test.go <ide> package parsers <ide> <ide> import ( <ide> "reflect" <del> "runtime" <ide> "strings" <ide> "testing" <ide> ) <ide> <del>func TestParseDockerDaemonHost(t *testing.T) { <del> var ( <del> defaultHTTPHost = "tcp://localhost:2375" <del> defaultHTTPSHost = "tcp://localhost:2376" <del> defaultUnix = "/var/run/docker.sock" <del> defaultHOST = "unix:///var/run/docker.sock" <del> ) <del> if runtime.GOOS == "windows" { <del> defaultHOST = defaultHTTPHost <del> } <del> invalids := map[string]string{ <del> "0.0.0.0": "Invalid bind address format: 0.0.0.0", <del> "tcp:a.b.c.d": "Invalid bind address format: tcp:a.b.c.d", <del> "tcp:a.b.c.d/path": "Invalid bind address format: tcp:a.b.c.d/path", <del> "udp://127.0.0.1": "Invalid bind address format: udp://127.0.0.1", <del> "udp://127.0.0.1:2375": "Invalid bind address format: udp://127.0.0.1:2375", <del> "tcp://unix:///run/docker.sock": "Invalid bind address format: unix", <del> "tcp": "Invalid bind address format: tcp", <del> "unix": "Invalid bind address format: unix", <del> "fd": "Invalid bind address format: fd", <del> } <del> valids := map[string]string{ <del> "0.0.0.1:": "tcp://0.0.0.1:2375", <del> "0.0.0.1:5555": "tcp://0.0.0.1:5555", <del> "0.0.0.1:5555/path": "tcp://0.0.0.1:5555/path", <del> "[::1]:": "tcp://[::1]:2375", <del> "[::1]:5555/path": "tcp://[::1]:5555/path", <del> "[0:0:0:0:0:0:0:1]:": "tcp://[0:0:0:0:0:0:0:1]:2375", <del> "[0:0:0:0:0:0:0:1]:5555/path": "tcp://[0:0:0:0:0:0:0:1]:5555/path", <del> ":6666": "tcp://localhost:6666", <del> ":6666/path": "tcp://localhost:6666/path", <del> "": defaultHOST, <del> " ": defaultHOST, <del> " ": defaultHOST, <del> "tcp://": defaultHTTPHost, <del> "tcp://:7777": "tcp://localhost:7777", <del> "tcp://:7777/path": "tcp://localhost:7777/path", <del> " tcp://:7777/path ": "tcp://localhost:7777/path", <del> "unix:///run/docker.sock": "unix:///run/docker.sock", <del> "unix://": "unix:///var/run/docker.sock", <del> "fd://": "fd://", <del> "fd://something": "fd://something", <del> "localhost:": "tcp://localhost:2375", <del> "localhost:5555": "tcp://localhost:5555", <del> "localhost:5555/path": "tcp://localhost:5555/path", <del> } <del> for invalidAddr, expectedError := range invalids { <del> if addr, err := ParseDockerDaemonHost(defaultHTTPHost, defaultHTTPSHost, defaultUnix, "", invalidAddr); err == nil || err.Error() != expectedError { <del> t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr) <del> } <del> } <del> for validAddr, expectedAddr := range valids { <del> if addr, err := ParseDockerDaemonHost(defaultHTTPHost, defaultHTTPSHost, defaultUnix, "", validAddr); err != nil || addr != expectedAddr { <del> t.Errorf("%v -> expected %v, got (%v) addr (%v)", validAddr, expectedAddr, err, addr) <del> } <del> } <del>} <del> <del>func TestParseTCP(t *testing.T) { <del> var ( <del> defaultHTTPHost = "tcp://127.0.0.1:2376" <del> ) <del> invalids := map[string]string{ <del> "0.0.0.0": "Invalid bind address format: 0.0.0.0", <del> "tcp:a.b.c.d": "Invalid bind address format: tcp:a.b.c.d", <del> "tcp:a.b.c.d/path": "Invalid bind address format: tcp:a.b.c.d/path", <del> "udp://127.0.0.1": "Invalid proto, expected tcp: udp://127.0.0.1", <del> "udp://127.0.0.1:2375": "Invalid proto, expected tcp: udp://127.0.0.1:2375", <del> } <del> valids := map[string]string{ <del> "": defaultHTTPHost, <del> "tcp://": defaultHTTPHost, <del> "0.0.0.1:": "tcp://0.0.0.1:2376", <del> "0.0.0.1:5555": "tcp://0.0.0.1:5555", <del> "0.0.0.1:5555/path": "tcp://0.0.0.1:5555/path", <del> ":6666": "tcp://127.0.0.1:6666", <del> ":6666/path": "tcp://127.0.0.1:6666/path", <del> "tcp://:7777": "tcp://127.0.0.1:7777", <del> "tcp://:7777/path": "tcp://127.0.0.1:7777/path", <del> "[::1]:": "tcp://[::1]:2376", <del> "[::1]:5555": "tcp://[::1]:5555", <del> "[::1]:5555/path": "tcp://[::1]:5555/path", <del> "[0:0:0:0:0:0:0:1]:": "tcp://[0:0:0:0:0:0:0:1]:2376", <del> "[0:0:0:0:0:0:0:1]:5555": "tcp://[0:0:0:0:0:0:0:1]:5555", <del> "[0:0:0:0:0:0:0:1]:5555/path": "tcp://[0:0:0:0:0:0:0:1]:5555/path", <del> "localhost:": "tcp://localhost:2376", <del> "localhost:5555": "tcp://localhost:5555", <del> "localhost:5555/path": "tcp://localhost:5555/path", <del> } <del> for invalidAddr, expectedError := range invalids { <del> if addr, err := ParseTCPAddr(invalidAddr, defaultHTTPHost); err == nil || err.Error() != expectedError { <del> t.Errorf("tcp %v address expected error %v return, got %s and addr %v", invalidAddr, expectedError, err, addr) <del> } <del> } <del> for validAddr, expectedAddr := range valids { <del> if addr, err := ParseTCPAddr(validAddr, defaultHTTPHost); err != nil || addr != expectedAddr { <del> t.Errorf("%v -> expected %v, got %v and addr %v", validAddr, expectedAddr, err, addr) <del> } <del> } <del>} <del> <del>func TestParseInvalidUnixAddrInvalid(t *testing.T) { <del> if _, err := ParseUnixAddr("tcp://127.0.0.1", "unix:///var/run/docker.sock"); err == nil || err.Error() != "Invalid proto, expected unix: tcp://127.0.0.1" { <del> t.Fatalf("Expected an error, got %v", err) <del> } <del> if _, err := ParseUnixAddr("unix://tcp://127.0.0.1", "/var/run/docker.sock"); err == nil || err.Error() != "Invalid proto, expected unix: tcp://127.0.0.1" { <del> t.Fatalf("Expected an error, got %v", err) <del> } <del> if v, err := ParseUnixAddr("", "/var/run/docker.sock"); err != nil || v != "unix:///var/run/docker.sock" { <del> t.Fatalf("Expected an %v, got %v", v, "unix:///var/run/docker.sock") <del> } <del>} <del> <ide> func TestParseKeyValueOpt(t *testing.T) { <ide> invalids := map[string]string{ <ide> "": "Unable to parse key/value option: ",
6
Javascript
Javascript
add more information to assertionerrors
97c52ca5dc0b9c4df015dc36ef394ebe06ec00c6
<ide><path>lib/assert.js <ide> function expectedException(actual, expected, message, fn) { <ide> generatedMessage = true; <ide> message = 'The error is expected to be an instance of ' + <ide> `"${expected.name}". Received `; <add> // TODO: Special handle identical names. <ide> if (isError(actual)) { <del> message += `"${actual.name}"`; <add> const name = actual.constructor && actual.constructor.name; <add> message += `"${name || actual.name}"`; <add> if (actual.message) { <add> message += `\n\nError message:\n\n${actual.message}`; <add> } <ide> } else { <ide> message += `"${inspect(actual, { depth: -1 })}"`; <ide> } <ide> function expectedException(actual, expected, message, fn) { <ide> const name = expected.name ? `"${expected.name}" ` : ''; <ide> message = `The ${name}validation function is expected to return` + <ide> ` "true". Received ${inspect(res)}`; <add> <add> if (isError(actual)) { <add> message += `\n\nCaught error:\n\n${actual}`; <add> } <ide> } <ide> throwError = true; <ide> } <ide><path>test/parallel/test-assert-async.js <ide> const invalidThenableFunc = () => { <ide> () => assert.rejects(Promise.reject(err), validate), <ide> { <ide> message: 'The "validate" validation function is expected to ' + <del> "return \"true\". Received 'baz'", <add> "return \"true\". Received 'baz'\n\nCaught error:\n\n" + <add> 'Error: foobar', <ide> code: 'ERR_ASSERTION', <ide> actual: err, <ide> expected: validate, <ide><path>test/parallel/test-assert.js <ide> assert.throws( <ide> name: 'AssertionError', <ide> operator: 'throws', <ide> message: 'The error is expected to be an instance of "AssertionError". ' + <del> 'Received "TypeError"' <add> 'Received "TypeError"\n\nError message:\n\n[object Object]' <ide> } <ide> ); <ide> <ide> a.throws(() => thrower(TypeError), (err) => { <ide> assert.strictEqual( <ide> err.message, <ide> 'The error is expected to be an instance of "ES6Error". ' + <del> 'Received "Error"' <add> 'Received "AnotherErrorType"\n\nError message:\n\nfoo' <ide> ); <ide> assert.strictEqual(err.actual, actual); <ide> return true; <ide> assert.throws( <ide> () => assert.throws(() => { throw err; }, validate), <ide> { <ide> message: 'The validation function is expected to ' + <del> `return "true". Received ${inspect(validate())}`, <add> `return "true". Received ${inspect(validate())}\n\nCaught ` + <add> `error:\n\n${err}`, <ide> code: 'ERR_ASSERTION', <ide> actual: err, <ide> expected: validate,
3
Python
Python
change keras to use dtensor public api
55476a86ed482d2e1f473dc629848d2068225c73
<ide><path>keras/dtensor/__init__.py <ide> <ide> # Conditional import the dtensor API, since it is currently broken in OSS. <ide> if _DTENSOR_API_ENABLED: <del> # pylint: disable=g-direct-tensorflow-import, g-import-not-at-top <del> from tensorflow.dtensor import python as dtensor_api <add> from tensorflow.compat.v2.experimental import dtensor as dtensor_api # pylint: disable=g-import-not-at-top <ide> else: <ide> # Leave it with a placeholder, so that the import line from other python file <ide> # will not break. <ide> dtensor_api = None <del> <del>
1
Javascript
Javascript
remove unused roottag
30e9c40898a5b7b72cffd6dd214b062c323803f1
<ide><path>Libraries/Inspector/Inspector.js <ide> if (window.__REACT_DEVTOOLS_GLOBAL_HOOK__) { <ide> class Inspector extends React.Component { <ide> props: { <ide> inspectedViewTag: ?number, <del> rootTag: ?number, <ide> onRequestRerenderApp: (callback: (tag: ?number) => void) => void <ide> }; <ide> <ide> class Inspector extends React.Component { <ide> <View style={styles.container} pointerEvents="box-none"> <ide> {this.state.inspecting && <ide> <InspectorOverlay <del> rootTag={this.props.rootTag} <ide> inspected={this.state.inspected} <ide> inspectedViewTag={this.state.inspectedViewTag} <ide> onTouchInstance={this.onTouchInstance.bind(this)} <ide><path>Libraries/Inspector/InspectorOverlay.js <ide> var InspectorOverlay = React.createClass({ <ide> this.props.inspectedViewTag, <ide> [locationX, locationY], <ide> (nativeViewTag, left, top, width, height) => { <del> var instance = InspectorUtils.findInstanceByNativeTag(this.props.rootTag, nativeViewTag); <add> var instance = InspectorUtils.findInstanceByNativeTag(nativeViewTag); <ide> if (!instance) { <ide> return; <ide> } <ide><path>Libraries/Inspector/InspectorUtils.js <ide> function traverseOwnerTreeUp(hierarchy, instance) { <ide> } <ide> } <ide> <del>function findInstanceByNativeTag(rootTag, nativeTag) { <add>function findInstanceByNativeTag(nativeTag) { <ide> return ReactNativeComponentTree.getInstanceFromNode(nativeTag); <ide> } <ide> <ide><path>Libraries/ReactIOS/AppContainer.js <ide> var AppContainer = React.createClass({ <ide> var inspector = !__DEV__ || this.state.inspector <ide> ? null <ide> : <Inspector <del> rootTag={this.props.rootTag} <ide> inspectedViewTag={ReactNative.findNodeHandle(this.refs.main)} <ide> onRequestRerenderApp={(updateInspectedViewTag) => { <ide> this.setState( <ide><path>Libraries/ReactIOS/renderApplication.ios.js <ide> function renderApplication<P>( <ide> 'Expect to have a valid rootTag, instead got ', rootTag <ide> ); <ide> ReactNative.render( <del> <AppContainer rootTag={rootTag}> <add> <AppContainer> <ide> <RootComponent <ide> {...initialProps} <ide> rootTag={rootTag}
5
Javascript
Javascript
use correct hash interface
a41a0fb799ea6a53002215401ecafa0bf74a23c8
<ide><path>lib/AsyncDependenciesBlock.js <ide> const DependenciesBlock = require("./DependenciesBlock"); <ide> /** @typedef {import("./ChunkGroup")} ChunkGroup */ <ide> /** @typedef {import("./Module")} Module */ <ide> /** @typedef {import("./Dependency").DependencyLocation} DependencyLocation */ <del>/** @typedef {import("crypto").Hash} Hash */ <add>/** @typedef {import("./util/createHash").Hash} Hash */ <ide> /** @typedef {TODO} GroupOptions */ <ide> <ide> module.exports = class AsyncDependenciesBlock extends DependenciesBlock { <ide><path>lib/Chunk.js <ide> const ERR_CHUNK_INITIAL = <ide> /** @typedef {import("./ChunkGroup")} ChunkGroup */ <ide> /** @typedef {import("./ModuleReason.js")} ModuleReason */ <ide> /** @typedef {import("webpack-sources").Source} Source */ <del>/** @typedef {import("crypto").Hash} Hash */ <add>/** @typedef {import("./util/createHash").Hash} Hash */ <ide> <ide> /** <ide> * @typedef {Object} WithId an object who has an id property * <ide><path>lib/DependenciesBlock.js <ide> const DependenciesBlockVariable = require("./DependenciesBlockVariable"); <ide> /** @typedef {import("./AsyncDependenciesBlock")} AsyncDependenciesBlock */ <ide> /** @typedef {import("./DependenciesBlockVariable")} DependenciesBlockVariable */ <ide> /** @typedef {(d: Dependency) => boolean} DependencyFilterFunction */ <del>/** @typedef {import("crypto").Hash} Hash */ <add>/** @typedef {import("./util/createHash").Hash} Hash */ <ide> <ide> class DependenciesBlock { <ide> constructor() { <ide><path>lib/DependenciesBlockVariable.js <ide> const { RawSource, ReplaceSource } = require("webpack-sources"); <ide> /** @typedef {import("./Dependency")} Dependency */ <ide> /** @typedef {import("./Dependency").DependencyTemplate} DependencyTemplate */ <ide> /** @typedef {import("./RuntimeTemplate")} RuntimeTemplate */ <del>/** @typedef {import("crypto").Hash} Hash */ <add>/** @typedef {import("./util/createHash").Hash} Hash */ <ide> /** @typedef {(d: Dependency) => boolean} DependencyFilterFunction */ <ide> /** @typedef {Map<Function, DependencyTemplate>} DependencyFactoryConstruction */ <ide>
4
Mixed
Ruby
add a truncate method to the connection
9a4e183fe9f81365f7815c391512b3d46622d8c8
<ide><path>activerecord/CHANGELOG.md <add>* Add a truncate method to the connection. <add> <ide> * Don't autosave unchanged has_one through records. <ide> <ide> *Alan Kennedy*, *Steve Parrington* <ide><path>activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb <ide> def exec_delete(sql, name, binds) <ide> exec_query(sql, name, binds) <ide> end <ide> <add> # Executes the truncate statement. <add> def truncate(table_name, name = nil) <add> raise NotImplementedError <add> end <add> <ide> # Executes update +sql+ statement in the context of this connection using <ide> # +binds+ as the bind substitutes. +name+ is logged along with <ide> # the executed +sql+ statement. <ide><path>activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb <ide> def tables(name = nil, database = nil, like = nil) #:nodoc: <ide> end <ide> end <ide> <add> def truncate(table_name, name = nil) <add> execute "TRUNCATE TABLE #{quote_table_name(table_name)}", name <add> end <add> <ide> def table_exists?(name) <ide> return false unless name.present? <ide> return true if tables(nil, nil, name).any? <ide><path>activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb <ide> def clear_cache! <ide> @statements.clear <ide> end <ide> <add> def truncate(table_name, name = nil) <add> exec_query "TRUNCATE TABLE #{quote_table_name(table_name)}", name, [] <add> end <add> <ide> # Is this connection alive and ready for queries? <ide> def active? <ide> @connection.query 'SELECT 1' <ide><path>activerecord/test/cases/adapters/mysql2/connection_test.rb <ide> class MysqlConnectionTest < ActiveRecord::TestCase <ide> include ConnectionHelper <ide> <add> fixtures :comments <add> <ide> def setup <ide> super <ide> @subscriber = SQLSubscriber.new <ide> def test_bad_connection <ide> end <ide> end <ide> <add> def test_truncate <add> rows = ActiveRecord::Base.connection.exec_query("select count(*) from comments") <add> count = rows.first.values.first <add> assert_operator count, :>, 0 <add> <add> ActiveRecord::Base.connection.truncate("comments") <add> rows = ActiveRecord::Base.connection.exec_query("select count(*) from comments") <add> count = rows.first.values.first <add> assert_equal 0, count <add> end <add> <ide> def test_no_automatic_reconnection_after_timeout <ide> assert @connection.active? <ide> @connection.update('set @@wait_timeout=1') <ide><path>activerecord/test/cases/adapters/postgresql/connection_test.rb <ide> class PostgresqlConnectionTest < ActiveRecord::TestCase <ide> class NonExistentTable < ActiveRecord::Base <ide> end <ide> <add> fixtures :comments <add> <ide> def setup <ide> super <ide> @subscriber = SQLSubscriber.new <ide> def teardown <ide> super <ide> end <ide> <add> def test_truncate <add> count = ActiveRecord::Base.connection.execute("select count(*) from comments").first['count'].to_i <add> assert_operator count, :>, 0 <add> ActiveRecord::Base.connection.truncate("comments") <add> count = ActiveRecord::Base.connection.execute("select count(*) from comments").first['count'].to_i <add> assert_equal 0, count <add> end <add> <ide> def test_encoding <ide> assert_not_nil @connection.encoding <ide> end
6
Go
Go
remove stale files
5713ca469490b829c190d9be706e25e4f3f0e4d4
<ide><path>libnetwork/drivers/bridge/resolvconf.go <del>package bridge <del> <del>import ( <del> "bytes" <del> "io/ioutil" <del> "regexp" <del>) <del> <del>const ( <del> ipv4NumBlock = `(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)` <del> ipv4Address = `(` + ipv4NumBlock + `\.){3}` + ipv4NumBlock <del> <del> // This is not an IPv6 address verifier as it will accept a super-set of IPv6, and also <del> // will *not match* IPv4-Embedded IPv6 Addresses (RFC6052), but that and other variants <del> // -- e.g. other link-local types -- either won't work in containers or are unnecessary. <del> // For readability and sufficiency for Docker purposes this seemed more reasonable than a <del> // 1000+ character regexp with exact and complete IPv6 validation <del> ipv6Address = `([0-9A-Fa-f]{0,4}:){2,7}([0-9A-Fa-f]{0,4})` <del>) <del> <del>var nsRegexp = regexp.MustCompile(`^\s*nameserver\s*((` + ipv4Address + `)|(` + ipv6Address + `))\s*$`) <del> <del>func readResolvConf() ([]byte, error) { <del> resolv, err := ioutil.ReadFile("/etc/resolv.conf") <del> if err != nil { <del> return nil, err <del> } <del> return resolv, nil <del>} <del> <del>// getLines parses input into lines and strips away comments. <del>func getLines(input []byte, commentMarker []byte) [][]byte { <del> lines := bytes.Split(input, []byte("\n")) <del> var output [][]byte <del> for _, currentLine := range lines { <del> var commentIndex = bytes.Index(currentLine, commentMarker) <del> if commentIndex == -1 { <del> output = append(output, currentLine) <del> } else { <del> output = append(output, currentLine[:commentIndex]) <del> } <del> } <del> return output <del>} <del> <del>// GetNameserversAsCIDR returns nameservers (if any) listed in <del>// /etc/resolv.conf as CIDR blocks (e.g., "1.2.3.4/32") <del>// This function's output is intended for net.ParseCIDR <del>func getNameserversAsCIDR(resolvConf []byte) []string { <del> nameservers := []string{} <del> for _, nameserver := range getNameservers(resolvConf) { <del> nameservers = append(nameservers, nameserver+"/32") <del> } <del> return nameservers <del>} <del> <del>// GetNameservers returns nameservers (if any) listed in /etc/resolv.conf <del>func getNameservers(resolvConf []byte) []string { <del> nameservers := []string{} <del> for _, line := range getLines(resolvConf, []byte("#")) { <del> var ns = nsRegexp.FindSubmatch(line) <del> if len(ns) > 0 { <del> nameservers = append(nameservers, string(ns[1])) <del> } <del> } <del> return nameservers <del>} <ide><path>libnetwork/drivers/bridge/resolvconf_test.go <del>package bridge <del> <del>import ( <del> "bytes" <del> "testing" <del>) <del> <del>func TestResolveConfRead(t *testing.T) { <del> b, err := readResolvConf() <del> if err != nil { <del> t.Fatalf("Failed to read resolv.conf: %v", err) <del> } <del> <del> if b == nil { <del> t.Fatal("Reading resolv.conf returned no content") <del> } <del>} <del> <del>func TestResolveConfReadLines(t *testing.T) { <del> commentChar := []byte("#") <del> <del> b, _ := readResolvConf() <del> lines := getLines(b, commentChar) <del> if lines == nil { <del> t.Fatal("Failed to read resolv.conf lines") <del> } <del> <del> for _, line := range lines { <del> if bytes.Index(line, commentChar) != -1 { <del> t.Fatal("Returned comment content from resolv.conf") <del> } <del> } <del>} <del> <del>func TestResolvConfNameserversAsCIDR(t *testing.T) { <del> resolvConf := `# Commented line <del>nameserver 1.2.3.4 <del> <del>nameserver 5.6.7.8 # Test <del>` <del> <del> cidrs := getNameserversAsCIDR([]byte(resolvConf)) <del> if expected := 2; len(cidrs) != expected { <del> t.Fatalf("Expected %d nameservers, got %d", expected, len(cidrs)) <del> } <del> <del> expected := []string{"1.2.3.4/32", "5.6.7.8/32"} <del> for i, exp := range expected { <del> if cidrs[i] != exp { <del> t.Fatalf("Expected nameservers %s, got %s", exp, cidrs[i]) <del> } <del> } <del>}
2
Python
Python
add missing closing parens
c76113b8f032b3c46ac88c2601915ea8e155c053
<ide><path>keras/layers/normalization/batch_normalization.py <ide> class BatchNormalizationBase(Layer): <ide> - `beta` is a learned offset factor (initialized as 0), which <ide> can be disabled by passing `center=False` to the constructor. <ide> <del> **During inference** (i.e. when using `evaluate()` or `predict()` or when <add> **During inference** (i.e. when using `evaluate()` or `predict()`) or when <ide> calling the layer/model with the argument `training=False` (which is the <ide> default), the layer normalizes its output using a moving average of the <ide> mean and standard deviation of the batches it has seen during training. That
1
Text
Text
fix typos in readme
7f5d6c9701859c56f9d39edcea0543f8f8565740
<ide><path>README.md <ide> Instructions: <ide> 1. Obtain a copy of openssl-fips-x.x.x.tar.gz. <ide> To comply with the security policy you must ensure the path <ide> through which you get the file complies with the requirements <del> for a "secure intallation" as described in section 6.6 in <add> for a "secure installation" as described in section 6.6 in <ide> the [user guide] (https://openssl.org/docs/fips/UserGuide-2.0.pdf). <ide> For evaluation/experimentation you can simply download and verify <ide> `openssl-fips-x.x.x.tar.gz` from https://www.openssl.org/source/ <ide> gpg --keyserver pool.sks-keyservers.net --recv-keys DD8F2338BAE7501E3DD5AC78C273 <ide> ``` <ide> <ide> See the section above on [Verifying Binaries](#verifying-binaries) for <del>details on what to do with these keys to verify a downloaded file is official. <add>details on what to do with these keys to verify that a downloaded file is official. <ide> <ide> Previous releases of Node.js have been signed with one of the following GPG <ide> keys:
1
Python
Python
update ndarray.copy docstring
36eb76c9ded81c6626a86aa06d137dd800350751
<ide><path>numpy/core/_add_newdocs.py <ide> 'F' means F-order, 'A' means 'F' if `a` is Fortran contiguous, <ide> 'C' otherwise. 'K' means match the layout of `a` as closely <ide> as possible. (Note that this function and :func:`numpy.copy` are very <del> similar, but have different default values for their order= <del> arguments.) <add> similar but have different default values for their order= <add> arguments, and this function always passes sub-classes through.) <ide> <ide> See also <ide> -------- <del> numpy.copy <add> numpy.copy : Similar function with different default behavior <ide> numpy.copyto <ide> <add> Notes <add> ----- <add> This function is the preferred method for creating an array copy. The <add> function :func:`numpy.copy` is similar, but it defaults to using order 'K', <add> and will not pass sub-classes through by default. <add> <ide> Examples <ide> -------- <ide> >>> x = np.array([[1,2,3],[4,5,6]], order='F')
1
Ruby
Ruby
convert gpg test to spec
99da779434bda113f50f4a17880d1dfcacd93d24
<ide><path>Library/Homebrew/test/gpg_spec.rb <add>require "gpg" <add> <add>describe Gpg do <add> subject { described_class } <add> <add> describe "::create_test_key" do <add> it "creates a test key in the home directory" do <add> skip "GPG Unavailable" unless subject.available? <add> <add> Dir.mktmpdir do |dir| <add> ENV["HOME"] = dir <add> dir = Pathname.new(dir) <add> <add> shutup do <add> subject.create_test_key(dir) <add> end <add> expect(dir/".gnupg/secring.gpg").to exist <add> end <add> end <add> end <add>end <ide><path>Library/Homebrew/test/gpg_test.rb <del>require "testing_env" <del>require "gpg" <del> <del>class GpgTest < Homebrew::TestCase <del> def setup <del> super <del> skip "GPG Unavailable" unless Gpg.available? <del> @dir = Pathname.new(mktmpdir) <del> end <del> <del> def test_create_test_key <del> Dir.chdir(@dir) do <del> ENV["HOME"] = @dir <del> shutup { Gpg.create_test_key(@dir) } <del> assert_predicate @dir/".gnupg/secring.gpg", :exist? <del> end <del> end <del>end
2
PHP
PHP
throw exception if padding is invalid
bb0967cceba9ed0a0ba05ca92929a96f2cd8d822
<ide><path>laravel/crypter.php <ide> protected static function unpad($value) <ide> { <ide> $pad = ord($value[($length = Str::length($value)) - 1]); <ide> <del> return substr($value, 0, $length - $pad); <add> if ($pad and $pad < static::$block) <add> { <add> // If the correct padding is present on the string, we will remove <add> // it and return the value. Otherwise, we'll throw an exception <add> // as the padding appears to have been changed. <add> if (preg_match('/'.chr($pad).'{'.$pad.'}$/', $value)) <add> { <add> return substr($value, 0, $length - $pad); <add> } <add> <add> throw new \Exception("Decryption error. Padding is invalid."); <add> } <add> <add> return $value; <ide> } <ide> <ide> /**
1
Javascript
Javascript
fix logic for updating foldable range cache
c9a4bb4245f1252fb30e1ea1cf646ac5374a26d7
<ide><path>src/tree-sitter-language-mode.js <ide> class TreeSitterLanguageMode { <ide> this.emitRangeUpdate = this.emitRangeUpdate.bind(this) <ide> <ide> this.subscription = this.buffer.onDidChangeText(({changes}) => { <del> for (let i = changes.length - 1; i >= 0; i--) { <add> for (let i = 0, {length} = changes; i < length; i++) { <ide> const {oldRange, newRange} = changes[i] <del> const startRow = oldRange.start.row <del> const oldEndRow = oldRange.end.row <del> const newEndRow = newRange.end.row <ide> this.isFoldableCache.splice( <del> startRow, <del> oldEndRow - startRow, <del> ...new Array(newEndRow - startRow) <add> newRange.start.row, <add> oldRange.end.row - oldRange.start.row, <add> ...new Array(newRange.end.row - newRange.start.row) <ide> ) <ide> } <ide>
1
Javascript
Javascript
move string_creation into misc
2a2942bd7f39f687e61188fc593ab9d23ceff1c8
<ide><path>benchmark/misc/string_creation.js <add> <add>var common = require('../common.js'); <add>var bench = common.createBenchmark(main, { <add> millions: [100] <add>}) <add> <add>function main(conf) { <add> var n = +conf.millions * 1e6; <add> bench.start(); <add> var s; <add> for (var i = 0; i < n; i++) { <add> s = '01234567890'; <add> s[1] = "a"; <add> } <add> bench.end(n / 1e6); <add>} <ide><path>benchmark/string_creation.js <del> <del> <del>for (var i = 0; i < 9e7; i++) { <del> s = '01234567890'; <del> s[1] = "a"; <del>}
2
Javascript
Javascript
fix persistent caching for container modules
a92189e26d62401ca13d9e124e6af94d252c6005
<ide><path>lib/container/OverridableModule.js <ide> const OverridableOriginalDependency = require("./OverridableOriginalDependency") <ide> /** @typedef {import("../Compilation")} Compilation */ <ide> /** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */ <ide> /** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */ <add>/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */ <ide> /** @typedef {import("../RequestShortener")} RequestShortener */ <ide> /** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */ <ide> /** @typedef {import("../WebpackError")} WebpackError */ <ide> const TYPES = new Set(["overridable"]); <ide> <ide> class OverridableModule extends Module { <ide> /** <del> * @param {Module} originalModule original module <add> * @param {string} context context <add> * @param {string} originalRequest original request <ide> * @param {string} name global overridable name <ide> */ <del> constructor(originalModule, name) { <del> super("overridable-module", originalModule.context); <del> this.originalModule = originalModule; <add> constructor(context, originalRequest, name) { <add> super("overridable-module", context); <add> this.originalRequest = originalRequest; <ide> this.name = name; <ide> } <ide> <ide> /** <ide> * @returns {string} a unique identifier of the module <ide> */ <ide> identifier() { <del> return `overridable|${this.name}|${this.originalModule.identifier()}`; <add> return `overridable|${this.name}|${this.context}|${this.originalRequest}`; <ide> } <ide> <ide> /** <ide> * @param {RequestShortener} requestShortener the request shortener <ide> * @returns {string} a user readable identifier of the module <ide> */ <ide> readableIdentifier(requestShortener) { <del> return `overridable ${ <del> this.name <del> } -> ${this.originalModule.readableIdentifier(requestShortener)}`; <add> return `overridable ${this.name} -> ${this.originalRequest}`; <add> } <add> <add> /** <add> * @param {NeedBuildContext} context context info <add> * @param {function(WebpackError=, boolean=): void} callback callback function, returns true, if the module needs a rebuild <add> * @returns {void} <add> */ <add> needBuild(context, callback) { <add> callback(null, !this.buildInfo); <ide> } <ide> <ide> /** <ide> class OverridableModule extends Module { <ide> this.buildMeta = {}; <ide> this.buildInfo = {}; <ide> const block = new AsyncDependenciesBlock({}); <del> const dep = new OverridableOriginalDependency(this.originalModule); <add> const dep = new OverridableOriginalDependency(this.originalRequest); <ide> block.addDependency(dep); <ide> this.addBlock(block); <ide> callback(); <ide> class OverridableModule extends Module { <ide> return 42; <ide> } <ide> <del> /** <del> * Assuming this module is in the cache. Update the (cached) module with <del> * the fresh module from the factory. Usually updates internal references <del> * and properties. <del> * @param {Module} module fresh module <del> * @returns {void} <del> */ <del> updateCacheModule(module) { <del> super.updateCacheModule(module); <del> this.originalModule = /** @type {OverridableModule} */ (module).originalModule; <del> } <del> <ide> /** <ide> * @param {Hash} hash the hash used to track dependencies <ide> * @param {ChunkGraph} chunkGraph the chunk graph <ide> * @returns {void} <ide> */ <ide> updateHash(hash, chunkGraph) { <ide> hash.update(this.name); <add> hash.update(this.originalRequest); <ide> super.updateHash(hash, chunkGraph); <ide> } <ide> <ide> class OverridableModule extends Module { <ide> const runtimeRequirements = new Set([RuntimeGlobals.overrides]); <ide> const originalBlock = this.blocks[0]; <ide> const originalDep = originalBlock.dependencies[0]; <del> const originalModule = moduleGraph.getModule(originalDep); <add> const originalRequest = moduleGraph.getModule(originalDep); <ide> const ensureChunk = runtimeTemplate.blockPromise({ <ide> block: originalBlock, <ide> message: "", <ide> class OverridableModule extends Module { <ide> `return ${ensureChunk}.then(${runtimeTemplate.returningFunction( <ide> runtimeTemplate.returningFunction( <ide> runtimeTemplate.moduleRaw({ <del> module: originalModule, <add> module: originalRequest, <ide> chunkGraph, <ide> request: "", <ide> runtimeRequirements <ide> class OverridableModule extends Module { <ide> } <ide> <ide> serialize(context) { <del> context.write(this.name); <add> const { write } = context; <add> write(this.originalRequest); <add> write(this.name); <ide> super.serialize(context); <ide> } <ide> <ide> deserialize(context) { <del> this.name = context.read(); <add> const { read } = context; <add> this.originalRequest = read(); <add> this.name = read(); <ide> super.deserialize(context); <ide> } <ide> } <ide><path>lib/container/OverridableOriginalDependency.js <ide> <ide> "use strict"; <ide> <del>const Dependency = require("../Dependency"); <add>const ModuleDependency = require("../dependencies/ModuleDependency"); <ide> const makeSerializable = require("../util/makeSerializable"); <ide> <del>class OverridableOriginalDependency extends Dependency { <del> constructor(originalModule) { <del> super(); <del> this.originalModule = originalModule; <del> } <del> <del> /** <del> * @returns {string | null} an identifier to merge equal requests <del> */ <del> getResourceIdentifier() { <del> return this.originalModule.identifier(); <add>class OverridableOriginalDependency extends ModuleDependency { <add> constructor(request) { <add> super(request); <ide> } <ide> <ide> get type() { <ide> return "overridable original"; <ide> } <del> <del> serialize(context) { <del> context.write(this.originalModule); <del> super.serialize(context); <del> } <del> <del> deserialize(context) { <del> this.originalModule = context.read(); <del> super.deserialize(context); <del> } <ide> } <ide> <ide> makeSerializable( <ide><path>lib/container/OverridableOriginalModuleFactory.js <del>/* <del> MIT License http://www.opensource.org/licenses/mit-license.php <del> Author Tobias Koppers @sokra <del>*/ <del> <del>"use strict"; <del> <del>const ModuleFactory = require("../ModuleFactory"); <del> <del>/** @typedef {import("../ModuleFactory").ModuleFactoryCreateData} ModuleFactoryCreateData */ <del>/** @typedef {import("../ModuleFactory").ModuleFactoryResult} ModuleFactoryResult */ <del>/** @typedef {import("./OverridableOriginalDependency")} OverridableOriginalDependency */ <del> <del>class OverridableOriginalModuleFactory extends ModuleFactory { <del> /** <del> * @param {ModuleFactoryCreateData} data data object <del> * @param {function(Error=, ModuleFactoryResult=): void} callback callback <del> * @returns {void} <del> */ <del> create(data, callback) { <del> const dep = /** @type {OverridableOriginalDependency} */ (data <del> .dependencies[0]); <del> callback(null, { <del> module: dep.originalModule <del> }); <del> } <del>} <del> <del>module.exports = OverridableOriginalModuleFactory; <ide><path>lib/container/OverridablesPlugin.js <ide> const { <ide> const LazySet = require("../util/LazySet"); <ide> const OverridableModule = require("./OverridableModule"); <ide> const OverridableOriginalDependency = require("./OverridableOriginalDependency"); <del>const OverridableOriginalModuleFactory = require("./OverridableOriginalModuleFactory"); <ide> const OverridablesRuntimeModule = require("./OverridablesRuntimeModule"); <ide> const parseOptions = require("./parseOptions"); <ide> <ide> class OverridablesPlugin { <ide> (compilation, { normalModuleFactory }) => { <ide> compilation.dependencyFactories.set( <ide> OverridableOriginalDependency, <del> new OverridableOriginalModuleFactory() <add> normalModuleFactory <ide> ); <ide> <ide> const resolvedOverridables = new Map(); <ide> class OverridablesPlugin { <ide> ); <ide> normalModuleFactory.hooks.module.tap( <ide> "OverridablesPlugin", <del> (module, createData) => { <add> (module, createData, resolveData) => { <add> if ( <add> resolveData.dependencies[0] instanceof <add> OverridableOriginalDependency <add> ) { <add> return; <add> } <ide> const key = resolvedOverridables.get(createData.resource); <del> if (key !== undefined) return new OverridableModule(module, key); <add> if (key !== undefined) { <add> return new OverridableModule( <add> resolveData.context, <add> resolveData.request, <add> key <add> ); <add> } <ide> } <ide> ); <ide> compilation.hooks.runtimeRequirementInTree <ide><path>lib/container/RemoteModule.js <ide> const { RawSource } = require("webpack-sources"); <ide> const Module = require("../Module"); <ide> const RuntimeGlobals = require("../RuntimeGlobals"); <add>const makeSerializable = require("../util/makeSerializable"); <ide> const RemoteToExternalDependency = require("./RemoteToExternalDependency"); <ide> const RemoteToOverrideDependency = require("./RemoteToOverrideDependency"); <ide> <ide> const RemoteToOverrideDependency = require("./RemoteToOverrideDependency"); <ide> /** @typedef {import("../Compilation")} Compilation */ <ide> /** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */ <ide> /** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */ <add>/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */ <ide> /** @typedef {import("../RequestShortener")} RequestShortener */ <ide> /** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */ <ide> /** @typedef {import("../WebpackError")} WebpackError */ <ide> class RemoteModule extends Module { <ide> return `remote ${this.request}`; <ide> } <ide> <add> /** <add> * @param {NeedBuildContext} context context info <add> * @param {function(WebpackError=, boolean=): void} callback callback function, returns true, if the module needs a rebuild <add> * @returns {void} <add> */ <add> needBuild(context, callback) { <add> callback(null, !this.buildInfo); <add> } <add> <ide> /** <ide> * @param {WebpackOptions} options webpack options <ide> * @param {Compilation} compilation the compilation <ide> class RemoteModule extends Module { <ide> sources.set("remote", new RawSource("")); <ide> return { sources, runtimeRequirements: RUNTIME_REQUIREMENTS }; <ide> } <add> <add> serialize(context) { <add> const { write } = context; <add> write(this.request); <add> write(this.overrides); <add> write(this.externalRequest); <add> write(this.internalRequest); <add> super.serialize(context); <add> } <add> <add> deserialize(context) { <add> const { read } = context; <add> this.request = read(); <add> this.overrides = read(); <add> this.externalRequest = read(); <add> this.internalRequest = read(); <add> super.deserialize(context); <add> } <ide> } <ide> <add>makeSerializable(RemoteModule, "webpack/lib/container/RemoteModule"); <add> <ide> module.exports = RemoteModule; <ide><path>lib/container/RemoteOverrideModule.js <ide> const AsyncDependenciesBlock = require("../AsyncDependenciesBlock"); <ide> const Module = require("../Module"); <ide> const RuntimeGlobals = require("../RuntimeGlobals"); <ide> const Template = require("../Template"); <add>const makeSerializable = require("../util/makeSerializable"); <ide> const RemoteOverrideDependency = require("./RemoteOverrideDependency"); <ide> const RemoteToExternalDependency = require("./RemoteToExternalDependency"); <ide> <ide> const RemoteToExternalDependency = require("./RemoteToExternalDependency"); <ide> /** @typedef {import("../Compilation")} Compilation */ <ide> /** @typedef {import("../Module").CodeGenerationContext} CodeGenerationContext */ <ide> /** @typedef {import("../Module").CodeGenerationResult} CodeGenerationResult */ <add>/** @typedef {import("../Module").NeedBuildContext} NeedBuildContext */ <ide> /** @typedef {import("../RequestShortener")} RequestShortener */ <ide> /** @typedef {import("../ResolverFactory").ResolverWithOptions} ResolverWithOptions */ <ide> /** @typedef {import("../WebpackError")} WebpackError */ <ide> const RemoteToExternalDependency = require("./RemoteToExternalDependency"); <ide> <ide> const TYPES = new Set(["javascript"]); <ide> <del>class RemoteModule extends Module { <add>class RemoteOverrideModule extends Module { <ide> constructor(request, overrides) { <ide> super("remote-override-module"); <ide> this.request = request; <ide> class RemoteModule extends Module { <ide> return `remote override ${this.request}`; <ide> } <ide> <add> /** <add> * @param {NeedBuildContext} context context info <add> * @param {function(WebpackError=, boolean=): void} callback callback function, returns true, if the module needs a rebuild <add> * @returns {void} <add> */ <add> needBuild(context, callback) { <add> callback(null, !this.buildInfo); <add> } <add> <ide> /** <ide> * @param {WebpackOptions} options webpack options <ide> * @param {Compilation} compilation the compilation <ide> class RemoteModule extends Module { <ide> ); <ide> return { sources, runtimeRequirements }; <ide> } <add> <add> serialize(context) { <add> const { write } = context; <add> write(this.request); <add> write(this.overrides); <add> super.serialize(context); <add> } <add> <add> deserialize(context) { <add> const { read } = context; <add> this.request = read(); <add> this.overrides = read(); <add> super.deserialize(context); <add> } <ide> } <ide> <del>module.exports = RemoteModule; <add>makeSerializable( <add> RemoteOverrideModule, <add> "webpack/lib/container/RemoteOverrideModule" <add>); <add> <add>module.exports = RemoteOverrideModule; <ide><path>lib/util/internalSerializables.js <ide> module.exports = { <ide> require("../container/OverridableModule"), <ide> "container/OverridableOriginalDependency": () => <ide> require("../container/OverridableOriginalDependency"), <add> "container/RemoteModule": () => require("../container/RemoteModule"), <ide> "container/RemoteOverrideDependency": () => <ide> require("../container/RemoteOverrideDependency"), <add> "container/RemoteOverrideModule": () => <add> require("../container/RemoteOverrideModule"), <ide> "container/RemoteToExternalDependency": () => <ide> require("../container/RemoteToExternalDependency"), <ide> "container/RemoteToOverrideDependency": () =>
7
Javascript
Javascript
remove reset password endpoint
5e86b25a690a326b4aad5d0b90d3ce7bd91df9d2
<ide><path>common/models/user.js <ide> module.exports = function(User) { <ide> var mailOptions = { <ide> type: 'email', <ide> to: user.email, <del> from: 'team@freecodecamp.org', <add> from: getEmailSender(), <ide> subject: 'Welcome to freeCodeCamp!', <ide> protocol: getProtocol(), <ide> host: getHost(), <ide> module.exports = function(User) { <ide> }); <ide> }); <ide> <del> User.on('resetPasswordRequest', function(info) { <del> if (!isEmail(info.email)) { <del> console.error(createEmailError()); <del> return null; <del> } <del> let url; <del> const host = User.app.get('host'); <del> const { id: token } = info.accessToken; <del> if (process.env.NODE_ENV === 'development') { <del> const port = User.app.get('port'); <del> url = `http://${host}:${port}/reset-password?access_token=${token}`; <del> } else { <del> url = <del> `http://freecodecamp.org/reset-password?access_token=${token}`; <del> } <del> <del> // the email of the requested user <del> debug(info.email); <del> // the temp access token to allow password reset <del> debug(info.accessToken.id); <del> // requires AccessToken.belongsTo(User) <del> var mailOptions = { <del> to: info.email, <del> from: 'team@freecodecamp.org', <del> subject: 'Password Reset Request', <del> text: ` <del> Hello,\n\n <del> This email is confirming that you requested to <del> reset your password for your freeCodeCamp account. <del> This is your email: ${ info.email }. <del> Go to ${ url } to reset your password. <del> \n <del> Happy Coding! <del> \n <del> ` <del> }; <del> <del> return User.app.models.Email.send(mailOptions, function(err) { <del> if (err) { console.error(err); } <del> debug('email reset sent'); <del> }); <del> }); <del> <ide> User.beforeRemote('login', function(ctx, notUsed, next) { <ide> const { body } = ctx.req; <ide> if (body && typeof body.email === 'string') { <ide><path>server/utils/url-utils.js <ide> const isDev = process.env.NODE_ENV !== 'production'; <ide> const isBeta = !!process.env.BETA; <ide> <ide> export function getEmailSender() { <del> return process.env.EMAIL_SENDER || 'team@freecodecamp.org'; <add> return process.env.SES_MAIL_FROM || 'team@freecodecamp.org'; <ide> } <ide> <ide> export function getPort() {
2