├── .eslintrc.json ├── .github ├── eslint.json └── workflows │ └── node.js.yml ├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── rollup.config.js ├── src ├── dispatch.js └── index.js ├── test ├── .eslintrc.json └── dispatch-test.js └── yarn.lock /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "eslint:recommended", 3 | "parserOptions": { 4 | "sourceType": "module", 5 | "ecmaVersion": 8 6 | }, 7 | "rules": { 8 | "no-cond-assign": 0, 9 | "no-prototype-builtins": 0 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /.github/eslint.json: -------------------------------------------------------------------------------- 1 | { 2 | "problemMatcher": [ 3 | { 4 | "owner": "eslint-compact", 5 | "pattern": [ 6 | { 7 | "regexp": "^(.+):\\sline\\s(\\d+),\\scol\\s(\\d+),\\s(Error|Warning|Info)\\s-\\s(.+)\\s\\((.+)\\)$", 8 | "file": 1, 9 | "line": 2, 10 | "column": 3, 11 | "severity": 4, 12 | "message": 5, 13 | "code": 6 14 | } 15 | ] 16 | } 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /.github/workflows/node.js.yml: -------------------------------------------------------------------------------- 1 | # https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions 2 | 3 | name: Node.js CI 4 | 5 | on: 6 | push: 7 | branches: [ main ] 8 | pull_request: 9 | branches: [ main ] 10 | 11 | jobs: 12 | build: 13 | 14 | runs-on: ubuntu-latest 15 | 16 | strategy: 17 | matrix: 18 | node-version: [14.x] 19 | 20 | steps: 21 | - uses: actions/checkout@v2 22 | - name: Use Node.js ${{ matrix.node-version }} 23 | uses: actions/setup-node@v1 24 | with: 25 | node-version: ${{ matrix.node-version }} 26 | - run: yarn --frozen-lockfile 27 | - run: | 28 | echo ::add-matcher::.github/eslint.json 29 | yarn run eslint src test --format=compact 30 | - run: yarn test 31 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.sublime-workspace 2 | .DS_Store 3 | dist/ 4 | node_modules 5 | npm-debug.log 6 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright 2010-2021 Mike Bostock 2 | 3 | Permission to use, copy, modify, and/or distribute this software for any purpose 4 | with or without fee is hereby granted, provided that the above copyright notice 5 | and this permission notice appear in all copies. 6 | 7 | THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH 8 | REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND 9 | FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, 10 | INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS 11 | OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER 12 | TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF 13 | THIS SOFTWARE. 14 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # d3-dispatch 2 | 3 | 4 | 5 | Dispatching is a low-level interaction mechanism that allows you to register named callbacks and then call them with arbitrary arguments. A variety of D3 interaction components, such as [d3-drag](https://github.com/d3/d3-drag), use this mechanism to emit events to listeners. Think of this like Node’s [EventEmitter](https://nodejs.org/api/events.html), except every listener has a well-defined name so it’s easy to remove or replace them. 6 | 7 | ## Resources 8 | 9 | - [Documentation](https://d3js.org/d3-dispatch) 10 | - [Examples](https://observablehq.com/collection/@d3/d3-dispatch) 11 | - [Releases](https://github.com/d3/d3-dispatch/releases) 12 | - [Getting help](https://d3js.org/community) 13 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "d3-dispatch", 3 | "version": "3.0.1", 4 | "description": "Register named callbacks and call them with arguments.", 5 | "homepage": "https://d3js.org/d3-dispatch/", 6 | "repository": { 7 | "type": "git", 8 | "url": "https://github.com/d3/d3-dispatch.git" 9 | }, 10 | "keywords": [ 11 | "d3", 12 | "d3-module", 13 | "event", 14 | "listener", 15 | "dispatch" 16 | ], 17 | "license": "ISC", 18 | "author": { 19 | "name": "Mike Bostock", 20 | "url": "http://bost.ocks.org/mike" 21 | }, 22 | "type": "module", 23 | "files": [ 24 | "dist/**/*.js", 25 | "src/**/*.js" 26 | ], 27 | "module": "src/index.js", 28 | "main": "src/index.js", 29 | "jsdelivr": "dist/d3-dispatch.min.js", 30 | "unpkg": "dist/d3-dispatch.min.js", 31 | "exports": { 32 | "umd": "./dist/d3-dispatch.min.js", 33 | "default": "./src/index.js" 34 | }, 35 | "sideEffects": false, 36 | "devDependencies": { 37 | "eslint": "7", 38 | "mocha": "8", 39 | "rollup": "2", 40 | "rollup-plugin-terser": "7" 41 | }, 42 | "scripts": { 43 | "test": "mocha 'test/**/*-test.js' && eslint src test", 44 | "prepublishOnly": "rm -rf dist && yarn test && rollup -c", 45 | "postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../${npm_package_name}/dist/${npm_package_name}.js ${npm_package_name}.v${npm_package_version%%.*}.js && cp ../${npm_package_name}/dist/${npm_package_name}.min.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git add ${npm_package_name}.v${npm_package_version%%.*}.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git commit -m \"${npm_package_name} ${npm_package_version}\" && git push && cd -" 46 | }, 47 | "engines": { 48 | "node": ">=12" 49 | } 50 | } 51 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- 1 | import {readFileSync} from "fs"; 2 | import {terser} from "rollup-plugin-terser"; 3 | import * as meta from "./package.json"; 4 | 5 | // Extract copyrights from the LICENSE. 6 | const copyright = readFileSync("./LICENSE", "utf-8") 7 | .split(/\n/g) 8 | .filter(line => /^Copyright\s+/.test(line)) 9 | .map(line => line.replace(/^Copyright\s+/, "")) 10 | .join(", "); 11 | 12 | const config = { 13 | input: "src/index.js", 14 | external: Object.keys(meta.dependencies || {}).filter(key => /^d3-/.test(key)), 15 | output: { 16 | file: `dist/${meta.name}.js`, 17 | name: "d3", 18 | format: "umd", 19 | indent: false, 20 | extend: true, 21 | banner: `// ${meta.homepage} v${meta.version} Copyright ${copyright}`, 22 | globals: Object.assign({}, ...Object.keys(meta.dependencies || {}).filter(key => /^d3-/.test(key)).map(key => ({[key]: "d3"}))) 23 | }, 24 | plugins: [] 25 | }; 26 | 27 | export default [ 28 | config, 29 | { 30 | ...config, 31 | output: { 32 | ...config.output, 33 | file: `dist/${meta.name}.min.js` 34 | }, 35 | plugins: [ 36 | ...config.plugins, 37 | terser({ 38 | output: { 39 | preamble: config.output.banner 40 | } 41 | }) 42 | ] 43 | } 44 | ]; 45 | -------------------------------------------------------------------------------- /src/dispatch.js: -------------------------------------------------------------------------------- 1 | var noop = {value: () => {}}; 2 | 3 | function dispatch() { 4 | for (var i = 0, n = arguments.length, _ = {}, t; i < n; ++i) { 5 | if (!(t = arguments[i] + "") || (t in _) || /[\s.]/.test(t)) throw new Error("illegal type: " + t); 6 | _[t] = []; 7 | } 8 | return new Dispatch(_); 9 | } 10 | 11 | function Dispatch(_) { 12 | this._ = _; 13 | } 14 | 15 | function parseTypenames(typenames, types) { 16 | return typenames.trim().split(/^|\s+/).map(function(t) { 17 | var name = "", i = t.indexOf("."); 18 | if (i >= 0) name = t.slice(i + 1), t = t.slice(0, i); 19 | if (t && !types.hasOwnProperty(t)) throw new Error("unknown type: " + t); 20 | return {type: t, name: name}; 21 | }); 22 | } 23 | 24 | Dispatch.prototype = dispatch.prototype = { 25 | constructor: Dispatch, 26 | on: function(typename, callback) { 27 | var _ = this._, 28 | T = parseTypenames(typename + "", _), 29 | t, 30 | i = -1, 31 | n = T.length; 32 | 33 | // If no callback was specified, return the callback of the given type and name. 34 | if (arguments.length < 2) { 35 | while (++i < n) if ((t = (typename = T[i]).type) && (t = get(_[t], typename.name))) return t; 36 | return; 37 | } 38 | 39 | // If a type was specified, set the callback for the given type and name. 40 | // Otherwise, if a null callback was specified, remove callbacks of the given name. 41 | if (callback != null && typeof callback !== "function") throw new Error("invalid callback: " + callback); 42 | while (++i < n) { 43 | if (t = (typename = T[i]).type) _[t] = set(_[t], typename.name, callback); 44 | else if (callback == null) for (t in _) _[t] = set(_[t], typename.name, null); 45 | } 46 | 47 | return this; 48 | }, 49 | copy: function() { 50 | var copy = {}, _ = this._; 51 | for (var t in _) copy[t] = _[t].slice(); 52 | return new Dispatch(copy); 53 | }, 54 | call: function(type, that) { 55 | if ((n = arguments.length - 2) > 0) for (var args = new Array(n), i = 0, n, t; i < n; ++i) args[i] = arguments[i + 2]; 56 | if (!this._.hasOwnProperty(type)) throw new Error("unknown type: " + type); 57 | for (t = this._[type], i = 0, n = t.length; i < n; ++i) t[i].value.apply(that, args); 58 | }, 59 | apply: function(type, that, args) { 60 | if (!this._.hasOwnProperty(type)) throw new Error("unknown type: " + type); 61 | for (var t = this._[type], i = 0, n = t.length; i < n; ++i) t[i].value.apply(that, args); 62 | } 63 | }; 64 | 65 | function get(type, name) { 66 | for (var i = 0, n = type.length, c; i < n; ++i) { 67 | if ((c = type[i]).name === name) { 68 | return c.value; 69 | } 70 | } 71 | } 72 | 73 | function set(type, name, callback) { 74 | for (var i = 0, n = type.length; i < n; ++i) { 75 | if (type[i].name === name) { 76 | type[i] = noop, type = type.slice(0, i).concat(type.slice(i + 1)); 77 | break; 78 | } 79 | } 80 | if (callback != null) type.push({name: name, value: callback}); 81 | return type; 82 | } 83 | 84 | export default dispatch; 85 | -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- 1 | export {default as dispatch} from "./dispatch.js"; 2 | -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "eslint:recommended", 3 | "parserOptions": { 4 | "sourceType": "module", 5 | "ecmaVersion": 8 6 | }, 7 | "env": { 8 | "mocha": true 9 | } 10 | } 11 | -------------------------------------------------------------------------------- /test/dispatch-test.js: -------------------------------------------------------------------------------- 1 | import assert from "assert"; 2 | import {dispatch} from "../src/index.js"; 3 | 4 | it("dispatch(type…) returns a dispatch object with the specified types", () => { 5 | const d = dispatch("foo", "bar"); 6 | assert(d instanceof dispatch); 7 | }); 8 | 9 | it("dispatch(type…) does not throw an error if a specified type name collides with a dispatch method", () => { 10 | const d = dispatch("on"); 11 | assert(d instanceof dispatch); 12 | }); 13 | 14 | it("dispatch(type…) throws an error if a specified type name is illegal", () => { 15 | assert.throws(() => { dispatch("__proto__"); }); 16 | assert.throws(() => { dispatch("hasOwnProperty"); }); 17 | assert.throws(() => { dispatch(""); }); 18 | assert.throws(() => { dispatch("foo.bar"); }); 19 | assert.throws(() => { dispatch("foo bar"); }); 20 | assert.throws(() => { dispatch("foo\tbar"); }); 21 | }); 22 | 23 | it("dispatch(type…) throws an error if a specified type name is a duplicate", () => { 24 | assert.throws(() => { dispatch("foo", "foo"); }); 25 | }); 26 | 27 | it("dispatch(type).call(type, object, arguments…) invokes callbacks of the specified type", () => { 28 | let foo = 0; 29 | let bar = 0; 30 | const d = dispatch("foo", "bar").on("foo", function() { ++foo; }).on("bar", function() { ++bar; }); 31 | d.call("foo"); 32 | assert.strictEqual(foo, 1); 33 | assert.strictEqual(bar, 0); 34 | d.call("foo"); 35 | d.call("bar"); 36 | assert.strictEqual(foo, 2); 37 | assert.strictEqual(bar, 1); 38 | }); 39 | 40 | it("dispatch(type).call(type, object, arguments…) invokes callbacks with specified arguments and context", () => { 41 | const results = []; 42 | const foo = {}; 43 | const bar = {}; 44 | const d = dispatch("foo").on("foo", function() { results.push({this: this, arguments: [].slice.call(arguments)}); }); 45 | d.call("foo", foo, bar); 46 | assert.deepStrictEqual(results, [{this: foo, arguments: [bar]}]); 47 | d.call("foo", bar, foo, 42, "baz"); 48 | assert.deepStrictEqual(results, [{this: foo, arguments: [bar]}, {this: bar, arguments: [foo, 42, "baz"]}]); 49 | }); 50 | 51 | it("dispatch(type).call(type, object, arguments…) invokes callbacks in the order they were added", () => { 52 | const results = []; 53 | const d = dispatch("foo"); 54 | d.on("foo.a", function() { results.push("A"); }); 55 | d.on("foo.b", function() { results.push("B"); }); 56 | d.call("foo"); 57 | d.on("foo.c", function() { results.push("C"); }); 58 | d.on("foo.a", function() { results.push("A"); }); // move to end 59 | d.call("foo"); 60 | assert.deepStrictEqual(results, ["A", "B", "B", "C", "A"]); 61 | }); 62 | 63 | it("dispatch(type).call(type, object, arguments…) returns undefined", () => { 64 | const d = dispatch("foo"); 65 | assert.strictEqual(d.call("foo"), undefined); 66 | }); 67 | 68 | it("dispatch(type).apply(type, object, arguments) invokes callbacks of the specified type", () => { 69 | let foo = 0; 70 | let bar = 0; 71 | const d = dispatch("foo", "bar").on("foo", function() { ++foo; }).on("bar", function() { ++bar; }); 72 | d.apply("foo"); 73 | assert.strictEqual(foo, 1); 74 | assert.strictEqual(bar, 0); 75 | d.apply("foo"); 76 | d.apply("bar"); 77 | assert.strictEqual(foo, 2); 78 | assert.strictEqual(bar, 1); 79 | }); 80 | 81 | it("dispatch(type).apply(type, object, arguments) invokes callbacks with specified arguments and context", () => { 82 | const results = []; 83 | const foo = {}; 84 | const bar = {}; 85 | const d = dispatch("foo").on("foo", function() { results.push({this: this, arguments: [].slice.call(arguments)}); }); 86 | d.apply("foo", foo, [bar]); 87 | assert.deepStrictEqual(results, [{this: foo, arguments: [bar]}]); 88 | d.apply("foo", bar, [foo, 42, "baz"]); 89 | assert.deepStrictEqual(results, [{this: foo, arguments: [bar]}, {this: bar, arguments: [foo, 42, "baz"]}]); 90 | }); 91 | 92 | it("dispatch(type).apply(type, object, arguments) invokes callbacks in the order they were added", () => { 93 | const results = []; 94 | const d = dispatch("foo"); 95 | d.on("foo.a", function() { results.push("A"); }); 96 | d.on("foo.b", function() { results.push("B"); }); 97 | d.apply("foo"); 98 | d.on("foo.c", function() { results.push("C"); }); 99 | d.on("foo.a", function() { results.push("A"); }); // move to end 100 | d.apply("foo"); 101 | assert.deepStrictEqual(results, ["A", "B", "B", "C", "A"]); 102 | }); 103 | 104 | it("dispatch(type).apply(type, object, arguments) returns undefined", () => { 105 | const d = dispatch("foo"); 106 | assert.strictEqual(d.apply("foo"), undefined); 107 | }); 108 | 109 | it("dispatch(type).on(type, f) returns the dispatch object", () => { 110 | const d = dispatch("foo"); 111 | assert.strictEqual(d.on("foo", function() {}), d); 112 | }); 113 | 114 | it("dispatch(type).on(type, f) replaces an existing callback, if present", () => { 115 | let foo = 0; 116 | let bar = 0; 117 | const d = dispatch("foo", "bar"); 118 | d.on("foo", function() { ++foo; }); 119 | d.call("foo"); 120 | assert.strictEqual(foo, 1); 121 | assert.strictEqual(bar, 0); 122 | d.on("foo", function() { ++bar; }); 123 | d.call("foo"); 124 | assert.strictEqual(foo, 1); 125 | assert.strictEqual(bar, 1); 126 | }); 127 | 128 | it("dispatch(type).on(type, f) replacing an existing callback with itself has no effect", () => { 129 | let foo = 0; 130 | const FOO = function() { ++foo; }; 131 | const d = dispatch("foo").on("foo", FOO); 132 | d.call("foo"); 133 | assert.strictEqual(foo, 1); 134 | d.on("foo", FOO).on("foo", FOO).on("foo", FOO); 135 | d.call("foo"); 136 | assert.strictEqual(foo, 2); 137 | }); 138 | 139 | it("dispatch(type).on(type., …) is equivalent to dispatch(type).on(type, …)", () => { 140 | const d = dispatch("foo"); 141 | let foos = 0; 142 | let bars = 0; 143 | const foo = function() { ++foos; }; 144 | const bar = function() { ++bars; }; 145 | assert.strictEqual(d.on("foo.", foo), d); 146 | assert.strictEqual(d.on("foo."), foo); 147 | assert.strictEqual(d.on("foo"), foo); 148 | assert.strictEqual(d.on("foo.", bar), d); 149 | assert.strictEqual(d.on("foo."), bar); 150 | assert.strictEqual(d.on("foo"), bar); 151 | assert.strictEqual(d.call("foo"), undefined); 152 | assert.strictEqual(foos, 0); 153 | assert.strictEqual(bars, 1); 154 | assert.strictEqual(d.on(".", null), d); 155 | assert.strictEqual(d.on("foo"), undefined); 156 | assert.strictEqual(d.call("foo"), undefined); 157 | assert.strictEqual(foos, 0); 158 | assert.strictEqual(bars, 1); 159 | }); 160 | 161 | it("dispatch(type).on(type, null) removes an existing callback, if present", () => { 162 | let foo = 0; 163 | const d = dispatch("foo", "bar"); 164 | d.on("foo", function() { ++foo; }); 165 | d.call("foo"); 166 | assert.strictEqual(foo, 1); 167 | d.on("foo", null); 168 | d.call("foo"); 169 | assert.strictEqual(foo, 1); 170 | }); 171 | 172 | it("dispatch(type).on(type, null) does not remove a shared callback", () => { 173 | let a = 0; 174 | const A = function() { ++a; }; 175 | const d = dispatch("foo", "bar").on("foo", A).on("bar", A); 176 | d.call("foo"); 177 | d.call("bar"); 178 | assert.strictEqual(a, 2); 179 | d.on("foo", null); 180 | d.call("bar"); 181 | assert.strictEqual(a, 3); 182 | }); 183 | 184 | it("dispatch(type).on(type, null) removing a missing callback has no effect", () => { 185 | let a = 0; 186 | const d = dispatch("foo"); 187 | function A() { ++a; } 188 | d.on("foo.a", null).on("foo", A).on("foo", null).on("foo", null); 189 | d.call("foo"); 190 | assert.strictEqual(a, 0); 191 | }); 192 | 193 | it("dispatch(type).on(type, null) during a callback does not invoke the old callback", () => { 194 | let a = 0; 195 | let b = 0; 196 | let c = 0; 197 | const A = function() { ++a; d.on("foo.B", null); }; // remove B 198 | const B = function() { ++b; }; 199 | const d = dispatch("foo").on("foo.A", A).on("foo.B", B); 200 | d.call("foo"); 201 | assert.strictEqual(a, 1); 202 | assert.strictEqual(b, 0); 203 | assert.strictEqual(c, 0); 204 | }); 205 | 206 | it("dispatch(type).on(type, f) during a callback does not invoke the old or the new callback", () => { 207 | let a = 0; 208 | let b = 0; 209 | let c = 0; 210 | const A = function() { ++a; d.on("foo.B", C); }; // replace B with C 211 | const B = function() { ++b; }; 212 | const C = function() { ++c; }; 213 | const d = dispatch("foo").on("foo.A", A).on("foo.B", B); 214 | d.call("foo"); 215 | assert.strictEqual(a, 1); 216 | assert.strictEqual(b, 0); 217 | assert.strictEqual(c, 0); 218 | }); 219 | 220 | it("dispatch(type).on(type, f) during a callback does not invoke the new callback", () => { 221 | let a = 0; 222 | let b = 0; 223 | const A = function() { ++a; d.on("foo.B", B); }; // add B 224 | const B = function() { ++b; }; 225 | const d = dispatch("foo").on("foo.A", A); 226 | d.call("foo"); 227 | assert.strictEqual(a, 1); 228 | assert.strictEqual(b, 0); 229 | }); 230 | 231 | it("dispatch(type).on(type, f) coerces type to a string", () => { 232 | const f = function() {}; 233 | const g = function() {}; 234 | const d = dispatch(null, undefined).on(null, f).on(undefined, g); 235 | assert.strictEqual(d.on(null), f); 236 | assert.strictEqual(d.on(undefined), g); 237 | }); 238 | 239 | it("dispatch(\"foo\", \"bar\").on(\"foo bar\", f) adds a callback for both types", () => { 240 | let foos = 0; 241 | const foo = function() { ++foos; }; 242 | const d = dispatch("foo", "bar").on("foo bar", foo); 243 | assert.strictEqual(d.on("foo"), foo); 244 | assert.strictEqual(d.on("bar"), foo); 245 | d.call("foo"); 246 | assert.strictEqual(foos, 1); 247 | d.call("bar"); 248 | assert.strictEqual(foos, 2); 249 | }); 250 | 251 | it("dispatch(\"foo\").on(\"foo.one foo.two\", f) adds a callback for both typenames", () => { 252 | let foos = 0; 253 | const foo = function() { ++foos; }; 254 | const d = dispatch("foo").on("foo.one foo.two", foo); 255 | assert.strictEqual(d.on("foo.one"), foo); 256 | assert.strictEqual(d.on("foo.two"), foo); 257 | d.call("foo"); 258 | assert.strictEqual(foos, 2); 259 | }); 260 | 261 | it("dispatch(\"foo\", \"bar\").on(\"foo bar\") returns the callback for either type", () => { 262 | const foo = function() {}; 263 | const d = dispatch("foo", "bar"); 264 | d.on("foo", foo); 265 | assert.strictEqual(d.on("foo bar"), foo); 266 | assert.strictEqual(d.on("bar foo"), foo); 267 | d.on("foo", null).on("bar", foo); 268 | assert.strictEqual(d.on("foo bar"), foo); 269 | assert.strictEqual(d.on("bar foo"), foo); 270 | }); 271 | 272 | it("dispatch(\"foo\").on(\"foo.one foo.two\") returns the callback for either typename", () => { 273 | const foo = function() {}; 274 | const d = dispatch("foo"); 275 | d.on("foo.one", foo); 276 | assert.strictEqual(d.on("foo.one foo.two"), foo); 277 | assert.strictEqual(d.on("foo.two foo.one"), foo); 278 | assert.strictEqual(d.on("foo foo.one"), foo); 279 | assert.strictEqual(d.on("foo.one foo"), foo); 280 | d.on("foo.one", null).on("foo.two", foo); 281 | assert.strictEqual(d.on("foo.one foo.two"), foo); 282 | assert.strictEqual(d.on("foo.two foo.one"), foo); 283 | assert.strictEqual(d.on("foo foo.two"), foo); 284 | assert.strictEqual(d.on("foo.two foo"), foo); 285 | }); 286 | 287 | it("dispatch(\"foo\").on(\".one .two\", null) removes the callback for either typename", () => { 288 | const foo = function() {}; 289 | const d = dispatch("foo"); 290 | d.on("foo.one", foo); 291 | d.on("foo.two", foo); 292 | d.on("foo.one foo.two", null); 293 | assert.strictEqual(d.on("foo.one"), undefined); 294 | assert.strictEqual(d.on("foo.two"), undefined); 295 | }); 296 | 297 | it("dispatch(type).on(type, f) throws an error if f is not a function", () => { 298 | assert.throws(() => { dispatch("foo").on("foo", 42); }); 299 | }); 300 | 301 | it("dispatch(…).on(type, f) throws an error if the type is unknown", () => { 302 | assert.throws(() => { dispatch("foo").on("bar", () => {}); }); 303 | assert.throws(() => { dispatch("foo").on("__proto__", () => {}); }); 304 | }); 305 | 306 | it("dispatch(…).on(type) throws an error if the type is unknown", () => { 307 | assert.throws(() => { dispatch("foo").on("bar"); }); 308 | assert.throws(() => { dispatch("foo").on("__proto__"); }); 309 | }); 310 | 311 | it("dispatch(type).on(type) returns the expected callback", () => { 312 | const d = dispatch("foo"); 313 | function A() {} 314 | function B() {} 315 | function C() {} 316 | d.on("foo.a", A).on("foo.b", B).on("foo", C); 317 | assert.strictEqual(d.on("foo.a"), A); 318 | assert.strictEqual(d.on("foo.b"), B); 319 | assert.strictEqual(d.on("foo"), C); 320 | }); 321 | 322 | it("dispatch(type).on(.name) returns undefined when retrieving a callback", () => { 323 | const d = dispatch("foo").on("foo.a", function() {}); 324 | assert.strictEqual(d.on(".a"), undefined); 325 | }); 326 | 327 | it("dispatch(type).on(.name, null) removes all callbacks with the specified name", () => { 328 | const d = dispatch("foo", "bar"), a = {}, b = {}, c = {}, those = []; 329 | function A() { those.push(a); } 330 | function B() { those.push(b); } 331 | function C() { those.push(c); } 332 | d.on("foo.a", A).on("bar.a", B).on("foo", C).on(".a", null); 333 | d.call("foo"); 334 | d.call("bar"); 335 | assert.deepStrictEqual(those, [c]); 336 | }); 337 | 338 | it("dispatch(type).on(.name, f) has no effect", () => { 339 | const d = dispatch("foo", "bar"), a = {}, b = {}, those = []; 340 | function A() { those.push(a); } 341 | function B() { those.push(b); } 342 | d.on(".a", A).on("foo.a", B).on("bar", B); 343 | d.call("foo"); 344 | d.call("bar"); 345 | assert.deepStrictEqual(those, [b, b]); 346 | assert.strictEqual(d.on(".a"), undefined); 347 | }); 348 | 349 | it("dispatch(type…).copy() returns an isolated copy", () => { 350 | const foo = function() {}; 351 | const bar = function() {}; 352 | const d0 = dispatch("foo", "bar").on("foo", foo).on("bar", bar); 353 | const d1 = d0.copy(); 354 | assert.strictEqual(d1.on("foo"), foo); 355 | assert.strictEqual(d1.on("bar"), bar); 356 | 357 | // Changes to d1 don’t affect d0. 358 | assert.strictEqual(d1.on("bar", null), d1); 359 | assert.strictEqual(d1.on("bar"), undefined); 360 | assert.strictEqual(d0.on("bar"), bar); 361 | 362 | // Changes to d0 don’t affect d1. 363 | assert.strictEqual(d0.on("foo", null), d0); 364 | assert.strictEqual(d0.on("foo"), undefined); 365 | assert.strictEqual(d1.on("foo"), foo); 366 | }); 367 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@babel/code-frame@7.12.11": 6 | version "7.12.11" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.11.tgz#f4ad435aa263db935b8f10f2c552d23fb716a63f" 8 | integrity sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw== 9 | dependencies: 10 | "@babel/highlight" "^7.10.4" 11 | 12 | "@babel/code-frame@^7.10.4": 13 | version "7.12.13" 14 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.12.13.tgz#dcfc826beef65e75c50e21d3837d7d95798dd658" 15 | integrity sha512-HV1Cm0Q3ZrpCR93tkWOYiuYIgLxZXZFVG2VgK+MBWjUqZTundupbfx2aXarXuw5Ko5aMcjtJgbSs4vUGBS5v6g== 16 | dependencies: 17 | "@babel/highlight" "^7.12.13" 18 | 19 | "@babel/helper-validator-identifier@^7.14.0": 20 | version "7.14.0" 21 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.14.0.tgz#d26cad8a47c65286b15df1547319a5d0bcf27288" 22 | integrity sha512-V3ts7zMSu5lfiwWDVWzRDGIN+lnCEUdaXgtVHJgLb1rGaA6jMrtB9EmE7L18foXJIE8Un/A/h6NJfGQp/e1J4A== 23 | 24 | "@babel/highlight@^7.10.4", "@babel/highlight@^7.12.13": 25 | version "7.14.0" 26 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.0.tgz#3197e375711ef6bf834e67d0daec88e4f46113cf" 27 | integrity sha512-YSCOwxvTYEIMSGaBQb5kDDsCopDdiUGsqpatp3fOlI4+2HQSkTmEVWnVuySdAC5EWCqSWWTv0ib63RjR7dTBdg== 28 | dependencies: 29 | "@babel/helper-validator-identifier" "^7.14.0" 30 | chalk "^2.0.0" 31 | js-tokens "^4.0.0" 32 | 33 | "@eslint/eslintrc@^0.4.2": 34 | version "0.4.2" 35 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-0.4.2.tgz#f63d0ef06f5c0c57d76c4ab5f63d3835c51b0179" 36 | integrity sha512-8nmGq/4ycLpIwzvhI4tNDmQztZ8sp+hI7cyG8i1nQDhkAbRzHpXPidRAHlNvCZQpJTKw5ItIpMw9RSToGF00mg== 37 | dependencies: 38 | ajv "^6.12.4" 39 | debug "^4.1.1" 40 | espree "^7.3.0" 41 | globals "^13.9.0" 42 | ignore "^4.0.6" 43 | import-fresh "^3.2.1" 44 | js-yaml "^3.13.1" 45 | minimatch "^3.0.4" 46 | strip-json-comments "^3.1.1" 47 | 48 | "@types/node@*": 49 | version "15.12.1" 50 | resolved "https://registry.yarnpkg.com/@types/node/-/node-15.12.1.tgz#9b60797dee1895383a725f828a869c86c6caa5c2" 51 | integrity sha512-zyxJM8I1c9q5sRMtVF+zdd13Jt6RU4r4qfhTd7lQubyThvLfx6yYekWSQjGCGV2Tkecgxnlpl/DNlb6Hg+dmEw== 52 | 53 | "@ungap/promise-all-settled@1.1.2": 54 | version "1.1.2" 55 | resolved "https://registry.yarnpkg.com/@ungap/promise-all-settled/-/promise-all-settled-1.1.2.tgz#aa58042711d6e3275dd37dc597e5d31e8c290a44" 56 | integrity sha512-sL/cEvJWAnClXw0wHk85/2L0G6Sj8UB0Ctc1TEMbKSsmpRosqhwj9gWgFRZSrBr2f9tiXISwNhCPmlfqUqyb9Q== 57 | 58 | acorn-jsx@^5.3.1: 59 | version "5.3.1" 60 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.1.tgz#fc8661e11b7ac1539c47dbfea2e72b3af34d267b" 61 | integrity sha512-K0Ptm/47OKfQRpNQ2J/oIN/3QYiK6FwW+eJbILhsdxh2WTLdl+30o8aGdTbm5JbffpFFAg/g+zi1E+jvJha5ng== 62 | 63 | acorn@^7.4.0: 64 | version "7.4.1" 65 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 66 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 67 | 68 | ajv@^6.10.0, ajv@^6.12.4: 69 | version "6.12.6" 70 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 71 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 72 | dependencies: 73 | fast-deep-equal "^3.1.1" 74 | fast-json-stable-stringify "^2.0.0" 75 | json-schema-traverse "^0.4.1" 76 | uri-js "^4.2.2" 77 | 78 | ajv@^8.0.1: 79 | version "8.5.0" 80 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-8.5.0.tgz#695528274bcb5afc865446aa275484049a18ae4b" 81 | integrity sha512-Y2l399Tt1AguU3BPRP9Fn4eN+Or+StUGWCUpbnFyXSo8NZ9S4uj+AG2pjs5apK+ZMOwYOz1+a+VKvKH7CudXgQ== 82 | dependencies: 83 | fast-deep-equal "^3.1.1" 84 | json-schema-traverse "^1.0.0" 85 | require-from-string "^2.0.2" 86 | uri-js "^4.2.2" 87 | 88 | ansi-colors@4.1.1, ansi-colors@^4.1.1: 89 | version "4.1.1" 90 | resolved "https://registry.yarnpkg.com/ansi-colors/-/ansi-colors-4.1.1.tgz#cbb9ae256bf750af1eab344f229aa27fe94ba348" 91 | integrity sha512-JoX0apGbHaUJBNl6yF+p6JAFYZ666/hhCGKN5t9QFjbJQKUU/g8MNbFDbvfrgKXvI1QpZplPOnwIo99lX/AAmA== 92 | 93 | ansi-regex@^3.0.0: 94 | version "3.0.0" 95 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-3.0.0.tgz#ed0317c322064f79466c02966bddb605ab37d998" 96 | integrity sha1-7QMXwyIGT3lGbAKWa922Bas32Zg= 97 | 98 | ansi-regex@^5.0.0: 99 | version "5.0.0" 100 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.0.tgz#388539f55179bf39339c81af30a654d69f87cb75" 101 | integrity sha512-bY6fj56OUQ0hU1KjFNDQuJFezqKdrAyFdIevADiqrWHwSlbmBNMHp5ak2f40Pm8JTFyM2mqxkG6ngkHO11f/lg== 102 | 103 | ansi-styles@^3.2.1: 104 | version "3.2.1" 105 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 106 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 107 | dependencies: 108 | color-convert "^1.9.0" 109 | 110 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 111 | version "4.3.0" 112 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 113 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 114 | dependencies: 115 | color-convert "^2.0.1" 116 | 117 | anymatch@~3.1.1: 118 | version "3.1.2" 119 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 120 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 121 | dependencies: 122 | normalize-path "^3.0.0" 123 | picomatch "^2.0.4" 124 | 125 | argparse@^1.0.7: 126 | version "1.0.10" 127 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 128 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 129 | dependencies: 130 | sprintf-js "~1.0.2" 131 | 132 | argparse@^2.0.1: 133 | version "2.0.1" 134 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 135 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 136 | 137 | astral-regex@^2.0.0: 138 | version "2.0.0" 139 | resolved "https://registry.yarnpkg.com/astral-regex/-/astral-regex-2.0.0.tgz#483143c567aeed4785759c0865786dc77d7d2e31" 140 | integrity sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ== 141 | 142 | balanced-match@^1.0.0: 143 | version "1.0.2" 144 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 145 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 146 | 147 | binary-extensions@^2.0.0: 148 | version "2.2.0" 149 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 150 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 151 | 152 | brace-expansion@^1.1.7: 153 | version "1.1.11" 154 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 155 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 156 | dependencies: 157 | balanced-match "^1.0.0" 158 | concat-map "0.0.1" 159 | 160 | braces@~3.0.2: 161 | version "3.0.2" 162 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 163 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 164 | dependencies: 165 | fill-range "^7.0.1" 166 | 167 | browser-stdout@1.3.1: 168 | version "1.3.1" 169 | resolved "https://registry.yarnpkg.com/browser-stdout/-/browser-stdout-1.3.1.tgz#baa559ee14ced73452229bad7326467c61fabd60" 170 | integrity sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw== 171 | 172 | buffer-from@^1.0.0: 173 | version "1.1.1" 174 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" 175 | integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== 176 | 177 | callsites@^3.0.0: 178 | version "3.1.0" 179 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 180 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 181 | 182 | camelcase@^6.0.0: 183 | version "6.2.0" 184 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 185 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 186 | 187 | chalk@^2.0.0: 188 | version "2.4.2" 189 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 190 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 191 | dependencies: 192 | ansi-styles "^3.2.1" 193 | escape-string-regexp "^1.0.5" 194 | supports-color "^5.3.0" 195 | 196 | chalk@^4.0.0: 197 | version "4.1.1" 198 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.1.tgz#c80b3fab28bf6371e6863325eee67e618b77e6ad" 199 | integrity sha512-diHzdDKxcU+bAsUboHLPEDQiw0qEe0qd7SYUn3HgcFlWgbDcfLGswOHYeGrHKzG9z6UYf01d9VFMfZxPM1xZSg== 200 | dependencies: 201 | ansi-styles "^4.1.0" 202 | supports-color "^7.1.0" 203 | 204 | chokidar@3.5.1: 205 | version "3.5.1" 206 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.1.tgz#ee9ce7bbebd2b79f49f304799d5468e31e14e68a" 207 | integrity sha512-9+s+Od+W0VJJzawDma/gvBNQqkTiqYTWLuZoyAsivsI4AaWTCzHG06/TMjsf1cYe9Cb97UCEhjz7HvnPk2p/tw== 208 | dependencies: 209 | anymatch "~3.1.1" 210 | braces "~3.0.2" 211 | glob-parent "~5.1.0" 212 | is-binary-path "~2.1.0" 213 | is-glob "~4.0.1" 214 | normalize-path "~3.0.0" 215 | readdirp "~3.5.0" 216 | optionalDependencies: 217 | fsevents "~2.3.1" 218 | 219 | cliui@^7.0.2: 220 | version "7.0.4" 221 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 222 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 223 | dependencies: 224 | string-width "^4.2.0" 225 | strip-ansi "^6.0.0" 226 | wrap-ansi "^7.0.0" 227 | 228 | color-convert@^1.9.0: 229 | version "1.9.3" 230 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 231 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 232 | dependencies: 233 | color-name "1.1.3" 234 | 235 | color-convert@^2.0.1: 236 | version "2.0.1" 237 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 238 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 239 | dependencies: 240 | color-name "~1.1.4" 241 | 242 | color-name@1.1.3: 243 | version "1.1.3" 244 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 245 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 246 | 247 | color-name@~1.1.4: 248 | version "1.1.4" 249 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 250 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 251 | 252 | commander@^2.20.0: 253 | version "2.20.3" 254 | resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.3.tgz#fd485e84c03eb4881c20722ba48035e8531aeb33" 255 | integrity sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ== 256 | 257 | concat-map@0.0.1: 258 | version "0.0.1" 259 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 260 | integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s= 261 | 262 | cross-spawn@^7.0.2: 263 | version "7.0.3" 264 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 265 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 266 | dependencies: 267 | path-key "^3.1.0" 268 | shebang-command "^2.0.0" 269 | which "^2.0.1" 270 | 271 | debug@4.3.1, debug@^4.0.1, debug@^4.1.1: 272 | version "4.3.1" 273 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.1.tgz#f0d229c505e0c6d8c49ac553d1b13dc183f6b2ee" 274 | integrity sha512-doEwdvm4PCeK4K3RQN2ZC2BYUBaxwLARCqZmMjtF8a51J2Rb0xpVloFRnCODwqjpwnAoao4pelN8l3RJdv3gRQ== 275 | dependencies: 276 | ms "2.1.2" 277 | 278 | decamelize@^4.0.0: 279 | version "4.0.0" 280 | resolved "https://registry.yarnpkg.com/decamelize/-/decamelize-4.0.0.tgz#aa472d7bf660eb15f3494efd531cab7f2a709837" 281 | integrity sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ== 282 | 283 | deep-is@^0.1.3: 284 | version "0.1.3" 285 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.3.tgz#b369d6fb5dbc13eecf524f91b070feedc357cf34" 286 | integrity sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ= 287 | 288 | diff@5.0.0: 289 | version "5.0.0" 290 | resolved "https://registry.yarnpkg.com/diff/-/diff-5.0.0.tgz#7ed6ad76d859d030787ec35855f5b1daf31d852b" 291 | integrity sha512-/VTCrvm5Z0JGty/BWHljh+BAiw3IK+2j87NGMu8Nwc/f48WoDAC395uomO9ZD117ZOBaHmkX1oyLvkVM/aIT3w== 292 | 293 | doctrine@^3.0.0: 294 | version "3.0.0" 295 | resolved "https://registry.yarnpkg.com/doctrine/-/doctrine-3.0.0.tgz#addebead72a6574db783639dc87a121773973961" 296 | integrity sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w== 297 | dependencies: 298 | esutils "^2.0.2" 299 | 300 | emoji-regex@^8.0.0: 301 | version "8.0.0" 302 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 303 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 304 | 305 | enquirer@^2.3.5: 306 | version "2.3.6" 307 | resolved "https://registry.yarnpkg.com/enquirer/-/enquirer-2.3.6.tgz#2a7fe5dd634a1e4125a975ec994ff5456dc3734d" 308 | integrity sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg== 309 | dependencies: 310 | ansi-colors "^4.1.1" 311 | 312 | escalade@^3.1.1: 313 | version "3.1.1" 314 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 315 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 316 | 317 | escape-string-regexp@4.0.0, escape-string-regexp@^4.0.0: 318 | version "4.0.0" 319 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 320 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 321 | 322 | escape-string-regexp@^1.0.5: 323 | version "1.0.5" 324 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 325 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 326 | 327 | eslint-scope@^5.1.1: 328 | version "5.1.1" 329 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-5.1.1.tgz#e786e59a66cb92b3f6c1fb0d508aab174848f48c" 330 | integrity sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw== 331 | dependencies: 332 | esrecurse "^4.3.0" 333 | estraverse "^4.1.1" 334 | 335 | eslint-utils@^2.1.0: 336 | version "2.1.0" 337 | resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-2.1.0.tgz#d2de5e03424e707dc10c74068ddedae708741b27" 338 | integrity sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg== 339 | dependencies: 340 | eslint-visitor-keys "^1.1.0" 341 | 342 | eslint-visitor-keys@^1.1.0, eslint-visitor-keys@^1.3.0: 343 | version "1.3.0" 344 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz#30ebd1ef7c2fdff01c3a4f151044af25fab0523e" 345 | integrity sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ== 346 | 347 | eslint-visitor-keys@^2.0.0: 348 | version "2.1.0" 349 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz#f65328259305927392c938ed44eb0a5c9b2bd303" 350 | integrity sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw== 351 | 352 | eslint@7: 353 | version "7.28.0" 354 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-7.28.0.tgz#435aa17a0b82c13bb2be9d51408b617e49c1e820" 355 | integrity sha512-UMfH0VSjP0G4p3EWirscJEQ/cHqnT/iuH6oNZOB94nBjWbMnhGEPxsZm1eyIW0C/9jLI0Fow4W5DXLjEI7mn1g== 356 | dependencies: 357 | "@babel/code-frame" "7.12.11" 358 | "@eslint/eslintrc" "^0.4.2" 359 | ajv "^6.10.0" 360 | chalk "^4.0.0" 361 | cross-spawn "^7.0.2" 362 | debug "^4.0.1" 363 | doctrine "^3.0.0" 364 | enquirer "^2.3.5" 365 | escape-string-regexp "^4.0.0" 366 | eslint-scope "^5.1.1" 367 | eslint-utils "^2.1.0" 368 | eslint-visitor-keys "^2.0.0" 369 | espree "^7.3.1" 370 | esquery "^1.4.0" 371 | esutils "^2.0.2" 372 | fast-deep-equal "^3.1.3" 373 | file-entry-cache "^6.0.1" 374 | functional-red-black-tree "^1.0.1" 375 | glob-parent "^5.1.2" 376 | globals "^13.6.0" 377 | ignore "^4.0.6" 378 | import-fresh "^3.0.0" 379 | imurmurhash "^0.1.4" 380 | is-glob "^4.0.0" 381 | js-yaml "^3.13.1" 382 | json-stable-stringify-without-jsonify "^1.0.1" 383 | levn "^0.4.1" 384 | lodash.merge "^4.6.2" 385 | minimatch "^3.0.4" 386 | natural-compare "^1.4.0" 387 | optionator "^0.9.1" 388 | progress "^2.0.0" 389 | regexpp "^3.1.0" 390 | semver "^7.2.1" 391 | strip-ansi "^6.0.0" 392 | strip-json-comments "^3.1.0" 393 | table "^6.0.9" 394 | text-table "^0.2.0" 395 | v8-compile-cache "^2.0.3" 396 | 397 | espree@^7.3.0, espree@^7.3.1: 398 | version "7.3.1" 399 | resolved "https://registry.yarnpkg.com/espree/-/espree-7.3.1.tgz#f2df330b752c6f55019f8bd89b7660039c1bbbb6" 400 | integrity sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g== 401 | dependencies: 402 | acorn "^7.4.0" 403 | acorn-jsx "^5.3.1" 404 | eslint-visitor-keys "^1.3.0" 405 | 406 | esprima@^4.0.0: 407 | version "4.0.1" 408 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 409 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 410 | 411 | esquery@^1.4.0: 412 | version "1.4.0" 413 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.4.0.tgz#2148ffc38b82e8c7057dfed48425b3e61f0f24a5" 414 | integrity sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w== 415 | dependencies: 416 | estraverse "^5.1.0" 417 | 418 | esrecurse@^4.3.0: 419 | version "4.3.0" 420 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 421 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 422 | dependencies: 423 | estraverse "^5.2.0" 424 | 425 | estraverse@^4.1.1: 426 | version "4.3.0" 427 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d" 428 | integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw== 429 | 430 | estraverse@^5.1.0, estraverse@^5.2.0: 431 | version "5.2.0" 432 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 433 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 434 | 435 | esutils@^2.0.2: 436 | version "2.0.3" 437 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 438 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 439 | 440 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 441 | version "3.1.3" 442 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 443 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 444 | 445 | fast-json-stable-stringify@^2.0.0: 446 | version "2.1.0" 447 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 448 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 449 | 450 | fast-levenshtein@^2.0.6: 451 | version "2.0.6" 452 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 453 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 454 | 455 | file-entry-cache@^6.0.1: 456 | version "6.0.1" 457 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-6.0.1.tgz#211b2dd9659cb0394b073e7323ac3c933d522027" 458 | integrity sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg== 459 | dependencies: 460 | flat-cache "^3.0.4" 461 | 462 | fill-range@^7.0.1: 463 | version "7.0.1" 464 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 465 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 466 | dependencies: 467 | to-regex-range "^5.0.1" 468 | 469 | find-up@5.0.0: 470 | version "5.0.0" 471 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 472 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 473 | dependencies: 474 | locate-path "^6.0.0" 475 | path-exists "^4.0.0" 476 | 477 | flat-cache@^3.0.4: 478 | version "3.0.4" 479 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-3.0.4.tgz#61b0338302b2fe9f957dcc32fc2a87f1c3048b11" 480 | integrity sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg== 481 | dependencies: 482 | flatted "^3.1.0" 483 | rimraf "^3.0.2" 484 | 485 | flat@^5.0.2: 486 | version "5.0.2" 487 | resolved "https://registry.yarnpkg.com/flat/-/flat-5.0.2.tgz#8ca6fe332069ffa9d324c327198c598259ceb241" 488 | integrity sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ== 489 | 490 | flatted@^3.1.0: 491 | version "3.1.1" 492 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.1.1.tgz#c4b489e80096d9df1dfc97c79871aea7c617c469" 493 | integrity sha512-zAoAQiudy+r5SvnSw3KJy5os/oRJYHzrzja/tBDqrZtNhUw8bt6y8OBzMWcjWr+8liV8Eb6yOhw8WZ7VFZ5ZzA== 494 | 495 | fs.realpath@^1.0.0: 496 | version "1.0.0" 497 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 498 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 499 | 500 | fsevents@~2.3.1: 501 | version "2.3.2" 502 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 503 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 504 | 505 | functional-red-black-tree@^1.0.1: 506 | version "1.0.1" 507 | resolved "https://registry.yarnpkg.com/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz#1b0ab3bd553b2a0d6399d29c0e3ea0b252078327" 508 | integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc= 509 | 510 | get-caller-file@^2.0.5: 511 | version "2.0.5" 512 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 513 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 514 | 515 | glob-parent@^5.1.2, glob-parent@~5.1.0: 516 | version "5.1.2" 517 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 518 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 519 | dependencies: 520 | is-glob "^4.0.1" 521 | 522 | glob@7.1.6: 523 | version "7.1.6" 524 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.6.tgz#141f33b81a7c2492e125594307480c46679278a6" 525 | integrity sha512-LwaxwyZ72Lk7vZINtNNrywX0ZuLyStrdDtabefZKAY5ZGJhVtgdznluResxNmPitE0SAO+O26sWTHeKSI2wMBA== 526 | dependencies: 527 | fs.realpath "^1.0.0" 528 | inflight "^1.0.4" 529 | inherits "2" 530 | minimatch "^3.0.4" 531 | once "^1.3.0" 532 | path-is-absolute "^1.0.0" 533 | 534 | glob@^7.1.3: 535 | version "7.1.7" 536 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.7.tgz#3b193e9233f01d42d0b3f78294bbeeb418f94a90" 537 | integrity sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ== 538 | dependencies: 539 | fs.realpath "^1.0.0" 540 | inflight "^1.0.4" 541 | inherits "2" 542 | minimatch "^3.0.4" 543 | once "^1.3.0" 544 | path-is-absolute "^1.0.0" 545 | 546 | globals@^13.6.0, globals@^13.9.0: 547 | version "13.9.0" 548 | resolved "https://registry.yarnpkg.com/globals/-/globals-13.9.0.tgz#4bf2bf635b334a173fb1daf7c5e6b218ecdc06cb" 549 | integrity sha512-74/FduwI/JaIrr1H8e71UbDE+5x7pIPs1C2rrwC52SszOo043CsWOZEMW7o2Y58xwm9b+0RBKDxY5n2sUpEFxA== 550 | dependencies: 551 | type-fest "^0.20.2" 552 | 553 | growl@1.10.5: 554 | version "1.10.5" 555 | resolved "https://registry.yarnpkg.com/growl/-/growl-1.10.5.tgz#f2735dc2283674fa67478b10181059355c369e5e" 556 | integrity sha512-qBr4OuELkhPenW6goKVXiv47US3clb3/IbuWF9KNKEijAy9oeHxU9IgzjvJhHkUzhaj7rOUD7+YGWqUjLp5oSA== 557 | 558 | has-flag@^3.0.0: 559 | version "3.0.0" 560 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 561 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 562 | 563 | has-flag@^4.0.0: 564 | version "4.0.0" 565 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 566 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 567 | 568 | he@1.2.0: 569 | version "1.2.0" 570 | resolved "https://registry.yarnpkg.com/he/-/he-1.2.0.tgz#84ae65fa7eafb165fddb61566ae14baf05664f0f" 571 | integrity sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw== 572 | 573 | ignore@^4.0.6: 574 | version "4.0.6" 575 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc" 576 | integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg== 577 | 578 | import-fresh@^3.0.0, import-fresh@^3.2.1: 579 | version "3.3.0" 580 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 581 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 582 | dependencies: 583 | parent-module "^1.0.0" 584 | resolve-from "^4.0.0" 585 | 586 | imurmurhash@^0.1.4: 587 | version "0.1.4" 588 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 589 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 590 | 591 | inflight@^1.0.4: 592 | version "1.0.6" 593 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 594 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 595 | dependencies: 596 | once "^1.3.0" 597 | wrappy "1" 598 | 599 | inherits@2: 600 | version "2.0.4" 601 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 602 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 603 | 604 | is-binary-path@~2.1.0: 605 | version "2.1.0" 606 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 607 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 608 | dependencies: 609 | binary-extensions "^2.0.0" 610 | 611 | is-extglob@^2.1.1: 612 | version "2.1.1" 613 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 614 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 615 | 616 | is-fullwidth-code-point@^2.0.0: 617 | version "2.0.0" 618 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz#a3b30a5c4f199183167aaab93beefae3ddfb654f" 619 | integrity sha1-o7MKXE8ZkYMWeqq5O+764937ZU8= 620 | 621 | is-fullwidth-code-point@^3.0.0: 622 | version "3.0.0" 623 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 624 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 625 | 626 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@~4.0.1: 627 | version "4.0.1" 628 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.1.tgz#7567dbe9f2f5e2467bc77ab83c4a29482407a5dc" 629 | integrity sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg== 630 | dependencies: 631 | is-extglob "^2.1.1" 632 | 633 | is-number@^7.0.0: 634 | version "7.0.0" 635 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 636 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 637 | 638 | is-plain-obj@^2.1.0: 639 | version "2.1.0" 640 | resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-2.1.0.tgz#45e42e37fccf1f40da8e5f76ee21515840c09287" 641 | integrity sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA== 642 | 643 | isexe@^2.0.0: 644 | version "2.0.0" 645 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 646 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 647 | 648 | jest-worker@^26.2.1: 649 | version "26.6.2" 650 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-26.6.2.tgz#7f72cbc4d643c365e27b9fd775f9d0eaa9c7a8ed" 651 | integrity sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ== 652 | dependencies: 653 | "@types/node" "*" 654 | merge-stream "^2.0.0" 655 | supports-color "^7.0.0" 656 | 657 | js-tokens@^4.0.0: 658 | version "4.0.0" 659 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 660 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 661 | 662 | js-yaml@4.0.0: 663 | version "4.0.0" 664 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.0.0.tgz#f426bc0ff4b4051926cd588c71113183409a121f" 665 | integrity sha512-pqon0s+4ScYUvX30wxQi3PogGFAlUyH0awepWvwkj4jD4v+ova3RiYw8bmA6x2rDrEaj8i/oWKoRxpVNW+Re8Q== 666 | dependencies: 667 | argparse "^2.0.1" 668 | 669 | js-yaml@^3.13.1: 670 | version "3.14.1" 671 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 672 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 673 | dependencies: 674 | argparse "^1.0.7" 675 | esprima "^4.0.0" 676 | 677 | json-schema-traverse@^0.4.1: 678 | version "0.4.1" 679 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 680 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 681 | 682 | json-schema-traverse@^1.0.0: 683 | version "1.0.0" 684 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz#ae7bcb3656ab77a73ba5c49bf654f38e6b6860e2" 685 | integrity sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug== 686 | 687 | json-stable-stringify-without-jsonify@^1.0.1: 688 | version "1.0.1" 689 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 690 | integrity sha1-nbe1lJatPzz+8wp1FC0tkwrXJlE= 691 | 692 | levn@^0.4.1: 693 | version "0.4.1" 694 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 695 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 696 | dependencies: 697 | prelude-ls "^1.2.1" 698 | type-check "~0.4.0" 699 | 700 | locate-path@^6.0.0: 701 | version "6.0.0" 702 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 703 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 704 | dependencies: 705 | p-locate "^5.0.0" 706 | 707 | lodash.clonedeep@^4.5.0: 708 | version "4.5.0" 709 | resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef" 710 | integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8= 711 | 712 | lodash.merge@^4.6.2: 713 | version "4.6.2" 714 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 715 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 716 | 717 | lodash.truncate@^4.4.2: 718 | version "4.4.2" 719 | resolved "https://registry.yarnpkg.com/lodash.truncate/-/lodash.truncate-4.4.2.tgz#5a350da0b1113b837ecfffd5812cbe58d6eae193" 720 | integrity sha1-WjUNoLERO4N+z//VgSy+WNbq4ZM= 721 | 722 | log-symbols@4.0.0: 723 | version "4.0.0" 724 | resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-4.0.0.tgz#69b3cc46d20f448eccdb75ea1fa733d9e821c920" 725 | integrity sha512-FN8JBzLx6CzeMrB0tg6pqlGU1wCrXW+ZXGH481kfsBqer0hToTIiHdjH4Mq8xJUbvATujKCvaREGWpGUionraA== 726 | dependencies: 727 | chalk "^4.0.0" 728 | 729 | lru-cache@^6.0.0: 730 | version "6.0.0" 731 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 732 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 733 | dependencies: 734 | yallist "^4.0.0" 735 | 736 | merge-stream@^2.0.0: 737 | version "2.0.0" 738 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 739 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 740 | 741 | minimatch@3.0.4, minimatch@^3.0.4: 742 | version "3.0.4" 743 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083" 744 | integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA== 745 | dependencies: 746 | brace-expansion "^1.1.7" 747 | 748 | mocha@8: 749 | version "8.4.0" 750 | resolved "https://registry.yarnpkg.com/mocha/-/mocha-8.4.0.tgz#677be88bf15980a3cae03a73e10a0fc3997f0cff" 751 | integrity sha512-hJaO0mwDXmZS4ghXsvPVriOhsxQ7ofcpQdm8dE+jISUOKopitvnXFQmpRR7jd2K6VBG6E26gU3IAbXXGIbu4sQ== 752 | dependencies: 753 | "@ungap/promise-all-settled" "1.1.2" 754 | ansi-colors "4.1.1" 755 | browser-stdout "1.3.1" 756 | chokidar "3.5.1" 757 | debug "4.3.1" 758 | diff "5.0.0" 759 | escape-string-regexp "4.0.0" 760 | find-up "5.0.0" 761 | glob "7.1.6" 762 | growl "1.10.5" 763 | he "1.2.0" 764 | js-yaml "4.0.0" 765 | log-symbols "4.0.0" 766 | minimatch "3.0.4" 767 | ms "2.1.3" 768 | nanoid "3.1.20" 769 | serialize-javascript "5.0.1" 770 | strip-json-comments "3.1.1" 771 | supports-color "8.1.1" 772 | which "2.0.2" 773 | wide-align "1.1.3" 774 | workerpool "6.1.0" 775 | yargs "16.2.0" 776 | yargs-parser "20.2.4" 777 | yargs-unparser "2.0.0" 778 | 779 | ms@2.1.2: 780 | version "2.1.2" 781 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 782 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 783 | 784 | ms@2.1.3: 785 | version "2.1.3" 786 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.3.tgz#574c8138ce1d2b5861f0b44579dbadd60c6615b2" 787 | integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA== 788 | 789 | nanoid@3.1.20: 790 | version "3.1.20" 791 | resolved "https://registry.yarnpkg.com/nanoid/-/nanoid-3.1.20.tgz#badc263c6b1dcf14b71efaa85f6ab4c1d6cfc788" 792 | integrity sha512-a1cQNyczgKbLX9jwbS/+d7W8fX/RfgYR7lVWwWOGIPNgK2m0MWvrGF6/m4kk6U3QcFMnZf3RIhL0v2Jgh/0Uxw== 793 | 794 | natural-compare@^1.4.0: 795 | version "1.4.0" 796 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 797 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 798 | 799 | normalize-path@^3.0.0, normalize-path@~3.0.0: 800 | version "3.0.0" 801 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 802 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 803 | 804 | once@^1.3.0: 805 | version "1.4.0" 806 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 807 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 808 | dependencies: 809 | wrappy "1" 810 | 811 | optionator@^0.9.1: 812 | version "0.9.1" 813 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.1.tgz#4f236a6373dae0566a6d43e1326674f50c291499" 814 | integrity sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw== 815 | dependencies: 816 | deep-is "^0.1.3" 817 | fast-levenshtein "^2.0.6" 818 | levn "^0.4.1" 819 | prelude-ls "^1.2.1" 820 | type-check "^0.4.0" 821 | word-wrap "^1.2.3" 822 | 823 | p-limit@^3.0.2: 824 | version "3.1.0" 825 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 826 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 827 | dependencies: 828 | yocto-queue "^0.1.0" 829 | 830 | p-locate@^5.0.0: 831 | version "5.0.0" 832 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 833 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 834 | dependencies: 835 | p-limit "^3.0.2" 836 | 837 | parent-module@^1.0.0: 838 | version "1.0.1" 839 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 840 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 841 | dependencies: 842 | callsites "^3.0.0" 843 | 844 | path-exists@^4.0.0: 845 | version "4.0.0" 846 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 847 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 848 | 849 | path-is-absolute@^1.0.0: 850 | version "1.0.1" 851 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 852 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 853 | 854 | path-key@^3.1.0: 855 | version "3.1.1" 856 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 857 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 858 | 859 | picomatch@^2.0.4, picomatch@^2.2.1: 860 | version "2.3.0" 861 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 862 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 863 | 864 | prelude-ls@^1.2.1: 865 | version "1.2.1" 866 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 867 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 868 | 869 | progress@^2.0.0: 870 | version "2.0.3" 871 | resolved "https://registry.yarnpkg.com/progress/-/progress-2.0.3.tgz#7e8cf8d8f5b8f239c1bc68beb4eb78567d572ef8" 872 | integrity sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA== 873 | 874 | punycode@^2.1.0: 875 | version "2.1.1" 876 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 877 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 878 | 879 | randombytes@^2.1.0: 880 | version "2.1.0" 881 | resolved "https://registry.yarnpkg.com/randombytes/-/randombytes-2.1.0.tgz#df6f84372f0270dc65cdf6291349ab7a473d4f2a" 882 | integrity sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ== 883 | dependencies: 884 | safe-buffer "^5.1.0" 885 | 886 | readdirp@~3.5.0: 887 | version "3.5.0" 888 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.5.0.tgz#9ba74c019b15d365278d2e91bb8c48d7b4d42c9e" 889 | integrity sha512-cMhu7c/8rdhkHXWsY+osBhfSy0JikwpHK/5+imo+LpeasTF8ouErHrlYkwT0++njiyuDvc7OFY5T3ukvZ8qmFQ== 890 | dependencies: 891 | picomatch "^2.2.1" 892 | 893 | regexpp@^3.1.0: 894 | version "3.1.0" 895 | resolved "https://registry.yarnpkg.com/regexpp/-/regexpp-3.1.0.tgz#206d0ad0a5648cffbdb8ae46438f3dc51c9f78e2" 896 | integrity sha512-ZOIzd8yVsQQA7j8GCSlPGXwg5PfmA1mrq0JP4nGhh54LaKN3xdai/vHUDu74pKwV8OxseMS65u2NImosQcSD0Q== 897 | 898 | require-directory@^2.1.1: 899 | version "2.1.1" 900 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 901 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 902 | 903 | require-from-string@^2.0.2: 904 | version "2.0.2" 905 | resolved "https://registry.yarnpkg.com/require-from-string/-/require-from-string-2.0.2.tgz#89a7fdd938261267318eafe14f9c32e598c36909" 906 | integrity sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw== 907 | 908 | resolve-from@^4.0.0: 909 | version "4.0.0" 910 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 911 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 912 | 913 | rimraf@^3.0.2: 914 | version "3.0.2" 915 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 916 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 917 | dependencies: 918 | glob "^7.1.3" 919 | 920 | rollup-plugin-terser@7: 921 | version "7.0.2" 922 | resolved "https://registry.yarnpkg.com/rollup-plugin-terser/-/rollup-plugin-terser-7.0.2.tgz#e8fbba4869981b2dc35ae7e8a502d5c6c04d324d" 923 | integrity sha512-w3iIaU4OxcF52UUXiZNsNeuXIMDvFrr+ZXK6bFZ0Q60qyVfq4uLptoS4bbq3paG3x216eQllFZX7zt6TIImguQ== 924 | dependencies: 925 | "@babel/code-frame" "^7.10.4" 926 | jest-worker "^26.2.1" 927 | serialize-javascript "^4.0.0" 928 | terser "^5.0.0" 929 | 930 | rollup@2: 931 | version "2.50.6" 932 | resolved "https://registry.yarnpkg.com/rollup/-/rollup-2.50.6.tgz#24e2211caf9031081656e98a5e5e94d3b5e786e2" 933 | integrity sha512-6c5CJPLVgo0iNaZWWliNu1Kl43tjP9LZcp6D/tkf2eLH2a9/WeHxg9vfTFl8QV/2SOyaJX37CEm9XuGM0rviUg== 934 | optionalDependencies: 935 | fsevents "~2.3.1" 936 | 937 | safe-buffer@^5.1.0: 938 | version "5.2.1" 939 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.1.tgz#1eaf9fa9bdb1fdd4ec75f58f9cdb4e6b7827eec6" 940 | integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ== 941 | 942 | semver@^7.2.1: 943 | version "7.3.5" 944 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.3.5.tgz#0b621c879348d8998e4b0e4be94b3f12e6018ef7" 945 | integrity sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ== 946 | dependencies: 947 | lru-cache "^6.0.0" 948 | 949 | serialize-javascript@5.0.1: 950 | version "5.0.1" 951 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-5.0.1.tgz#7886ec848049a462467a97d3d918ebb2aaf934f4" 952 | integrity sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA== 953 | dependencies: 954 | randombytes "^2.1.0" 955 | 956 | serialize-javascript@^4.0.0: 957 | version "4.0.0" 958 | resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa" 959 | integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw== 960 | dependencies: 961 | randombytes "^2.1.0" 962 | 963 | shebang-command@^2.0.0: 964 | version "2.0.0" 965 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 966 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 967 | dependencies: 968 | shebang-regex "^3.0.0" 969 | 970 | shebang-regex@^3.0.0: 971 | version "3.0.0" 972 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 973 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 974 | 975 | slice-ansi@^4.0.0: 976 | version "4.0.0" 977 | resolved "https://registry.yarnpkg.com/slice-ansi/-/slice-ansi-4.0.0.tgz#500e8dd0fd55b05815086255b3195adf2a45fe6b" 978 | integrity sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ== 979 | dependencies: 980 | ansi-styles "^4.0.0" 981 | astral-regex "^2.0.0" 982 | is-fullwidth-code-point "^3.0.0" 983 | 984 | source-map-support@~0.5.19: 985 | version "0.5.19" 986 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.19.tgz#a98b62f86dcaf4f67399648c085291ab9e8fed61" 987 | integrity sha512-Wonm7zOCIJzBGQdB+thsPar0kYuCIzYvxZwlBa87yi/Mdjv7Tip2cyVbLj5o0cFPN4EVkuTwb3GDDyUx2DGnGw== 988 | dependencies: 989 | buffer-from "^1.0.0" 990 | source-map "^0.6.0" 991 | 992 | source-map@^0.6.0: 993 | version "0.6.1" 994 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 995 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 996 | 997 | source-map@~0.7.2: 998 | version "0.7.3" 999 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 1000 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 1001 | 1002 | sprintf-js@~1.0.2: 1003 | version "1.0.3" 1004 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 1005 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 1006 | 1007 | "string-width@^1.0.2 || 2": 1008 | version "2.1.1" 1009 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-2.1.1.tgz#ab93f27a8dc13d28cac815c462143a6d9012ae9e" 1010 | integrity sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw== 1011 | dependencies: 1012 | is-fullwidth-code-point "^2.0.0" 1013 | strip-ansi "^4.0.0" 1014 | 1015 | string-width@^4.1.0, string-width@^4.2.0: 1016 | version "4.2.2" 1017 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.2.tgz#dafd4f9559a7585cfba529c6a0a4f73488ebd4c5" 1018 | integrity sha512-XBJbT3N4JhVumXE0eoLU9DCjcaF92KLNqTmFCnG1pf8duUxFGwtP6AD6nkjw9a3IdiRtL3E2w3JDiE/xi3vOeA== 1019 | dependencies: 1020 | emoji-regex "^8.0.0" 1021 | is-fullwidth-code-point "^3.0.0" 1022 | strip-ansi "^6.0.0" 1023 | 1024 | strip-ansi@^4.0.0: 1025 | version "4.0.0" 1026 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-4.0.0.tgz#a8479022eb1ac368a871389b635262c505ee368f" 1027 | integrity sha1-qEeQIusaw2iocTibY1JixQXuNo8= 1028 | dependencies: 1029 | ansi-regex "^3.0.0" 1030 | 1031 | strip-ansi@^6.0.0: 1032 | version "6.0.0" 1033 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.0.tgz#0b1571dd7669ccd4f3e06e14ef1eed26225ae532" 1034 | integrity sha512-AuvKTrTfQNYNIctbR1K/YGTR1756GycPsg7b9bdV9Duqur4gv6aKqHXah67Z8ImS7WEz5QVcOtlfW2rZEugt6w== 1035 | dependencies: 1036 | ansi-regex "^5.0.0" 1037 | 1038 | strip-json-comments@3.1.1, strip-json-comments@^3.1.0, strip-json-comments@^3.1.1: 1039 | version "3.1.1" 1040 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 1041 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 1042 | 1043 | supports-color@8.1.1: 1044 | version "8.1.1" 1045 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 1046 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 1047 | dependencies: 1048 | has-flag "^4.0.0" 1049 | 1050 | supports-color@^5.3.0: 1051 | version "5.5.0" 1052 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 1053 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 1054 | dependencies: 1055 | has-flag "^3.0.0" 1056 | 1057 | supports-color@^7.0.0, supports-color@^7.1.0: 1058 | version "7.2.0" 1059 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 1060 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 1061 | dependencies: 1062 | has-flag "^4.0.0" 1063 | 1064 | table@^6.0.9: 1065 | version "6.7.1" 1066 | resolved "https://registry.yarnpkg.com/table/-/table-6.7.1.tgz#ee05592b7143831a8c94f3cee6aae4c1ccef33e2" 1067 | integrity sha512-ZGum47Yi6KOOFDE8m223td53ath2enHcYLgOCjGr5ngu8bdIARQk6mN/wRMv4yMRcHnCSnHbCEha4sobQx5yWg== 1068 | dependencies: 1069 | ajv "^8.0.1" 1070 | lodash.clonedeep "^4.5.0" 1071 | lodash.truncate "^4.4.2" 1072 | slice-ansi "^4.0.0" 1073 | string-width "^4.2.0" 1074 | strip-ansi "^6.0.0" 1075 | 1076 | terser@^5.0.0: 1077 | version "5.7.0" 1078 | resolved "https://registry.yarnpkg.com/terser/-/terser-5.7.0.tgz#a761eeec206bc87b605ab13029876ead938ae693" 1079 | integrity sha512-HP5/9hp2UaZt5fYkuhNBR8YyRcT8juw8+uFbAme53iN9hblvKnLUTKkmwJG6ocWpIKf8UK4DoeWG4ty0J6S6/g== 1080 | dependencies: 1081 | commander "^2.20.0" 1082 | source-map "~0.7.2" 1083 | source-map-support "~0.5.19" 1084 | 1085 | text-table@^0.2.0: 1086 | version "0.2.0" 1087 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 1088 | integrity sha1-f17oI66AUgfACvLfSoTsP8+lcLQ= 1089 | 1090 | to-regex-range@^5.0.1: 1091 | version "5.0.1" 1092 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 1093 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 1094 | dependencies: 1095 | is-number "^7.0.0" 1096 | 1097 | type-check@^0.4.0, type-check@~0.4.0: 1098 | version "0.4.0" 1099 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 1100 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 1101 | dependencies: 1102 | prelude-ls "^1.2.1" 1103 | 1104 | type-fest@^0.20.2: 1105 | version "0.20.2" 1106 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.20.2.tgz#1bf207f4b28f91583666cb5fbd327887301cd5f4" 1107 | integrity sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ== 1108 | 1109 | uri-js@^4.2.2: 1110 | version "4.4.1" 1111 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 1112 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 1113 | dependencies: 1114 | punycode "^2.1.0" 1115 | 1116 | v8-compile-cache@^2.0.3: 1117 | version "2.3.0" 1118 | resolved "https://registry.yarnpkg.com/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz#2de19618c66dc247dcfb6f99338035d8245a2cee" 1119 | integrity sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA== 1120 | 1121 | which@2.0.2, which@^2.0.1: 1122 | version "2.0.2" 1123 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 1124 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 1125 | dependencies: 1126 | isexe "^2.0.0" 1127 | 1128 | wide-align@1.1.3: 1129 | version "1.1.3" 1130 | resolved "https://registry.yarnpkg.com/wide-align/-/wide-align-1.1.3.tgz#ae074e6bdc0c14a431e804e624549c633b000457" 1131 | integrity sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA== 1132 | dependencies: 1133 | string-width "^1.0.2 || 2" 1134 | 1135 | word-wrap@^1.2.3: 1136 | version "1.2.3" 1137 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 1138 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 1139 | 1140 | workerpool@6.1.0: 1141 | version "6.1.0" 1142 | resolved "https://registry.yarnpkg.com/workerpool/-/workerpool-6.1.0.tgz#a8e038b4c94569596852de7a8ea4228eefdeb37b" 1143 | integrity sha512-toV7q9rWNYha963Pl/qyeZ6wG+3nnsyvolaNUS8+R5Wtw6qJPTxIlOP1ZSvcGhEJw+l3HMMmtiNo9Gl61G4GVg== 1144 | 1145 | wrap-ansi@^7.0.0: 1146 | version "7.0.0" 1147 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 1148 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 1149 | dependencies: 1150 | ansi-styles "^4.0.0" 1151 | string-width "^4.1.0" 1152 | strip-ansi "^6.0.0" 1153 | 1154 | wrappy@1: 1155 | version "1.0.2" 1156 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 1157 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 1158 | 1159 | y18n@^5.0.5: 1160 | version "5.0.8" 1161 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 1162 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 1163 | 1164 | yallist@^4.0.0: 1165 | version "4.0.0" 1166 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 1167 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 1168 | 1169 | yargs-parser@20.2.4: 1170 | version "20.2.4" 1171 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.4.tgz#b42890f14566796f85ae8e3a25290d205f154a54" 1172 | integrity sha512-WOkpgNhPTlE73h4VFAFsOnomJVaovO8VqLDzy5saChRBFQFBoMYirowyW+Q9HB4HFF4Z7VZTiG3iSzJJA29yRA== 1173 | 1174 | yargs-parser@^20.2.2: 1175 | version "20.2.7" 1176 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.7.tgz#61df85c113edfb5a7a4e36eb8aa60ef423cbc90a" 1177 | integrity sha512-FiNkvbeHzB/syOjIUxFDCnhSfzAL8R5vs40MgLFBorXACCOAEaWu0gRZl14vG8MR9AOJIZbmkjhusqBYZ3HTHw== 1178 | 1179 | yargs-unparser@2.0.0: 1180 | version "2.0.0" 1181 | resolved "https://registry.yarnpkg.com/yargs-unparser/-/yargs-unparser-2.0.0.tgz#f131f9226911ae5d9ad38c432fe809366c2325eb" 1182 | integrity sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA== 1183 | dependencies: 1184 | camelcase "^6.0.0" 1185 | decamelize "^4.0.0" 1186 | flat "^5.0.2" 1187 | is-plain-obj "^2.1.0" 1188 | 1189 | yargs@16.2.0: 1190 | version "16.2.0" 1191 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 1192 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 1193 | dependencies: 1194 | cliui "^7.0.2" 1195 | escalade "^3.1.1" 1196 | get-caller-file "^2.0.5" 1197 | require-directory "^2.1.1" 1198 | string-width "^4.2.0" 1199 | y18n "^5.0.5" 1200 | yargs-parser "^20.2.2" 1201 | 1202 | yocto-queue@^0.1.0: 1203 | version "0.1.0" 1204 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 1205 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 1206 | --------------------------------------------------------------------------------