├── .github └── workflows │ └── test.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── quantity-queries.gemspec ├── sache.json ├── src ├── index.scss └── legacy.scss ├── tests ├── mixins.spec.scss └── scss.spec.js └── yarn.lock /.github/workflows/test.yml: -------------------------------------------------------------------------------- 1 | name: Test 2 | 3 | on: 4 | push: 5 | branches: [ master, main ] 6 | pull_request: 7 | branches: [ master, main ] 8 | 9 | jobs: 10 | build: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - uses: actions/setup-node@v2 15 | with: 16 | node-version: '14' 17 | - run: yarn 18 | - run: yarn test 19 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | Gemfile.lock 2 | *.gem 3 | tests/.sass-cache 4 | node_modules 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | # Changelog 2 | 3 | ## 1.1.0 4 | 5 | - Add `multiple-of()` mixin 6 | 7 | ## 1.0.0 8 | 9 | - New Dart Sass implementation 10 | - Support for deprecated LibSass (node-sass) implementation 11 | - New `even()` and `odd()` mixins 12 | - Removed support for Bower 13 | - Removed support for RubyGems 14 | 15 | ## 0.4.0 16 | 17 | - Added exactly() mixin 18 | 19 | ## 0.3.0 20 | 21 | - Added more checks 22 | 23 | ## 0.2.0 24 | 25 | - Small fixes 26 | 27 | ## 0.1.0 28 | 29 | - Initial release 30 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2014 Daniel Guillan 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Quantity Queries mixins 2 | 3 | [![npm version](https://badge.fury.io/js/quantity-queries.svg)](https://badge.fury.io/js/quantity-queries) [![Test](https://github.com/danielguillan/quantity-queries/actions/workflows/test.yml/badge.svg)](https://github.com/danielguillan/quantity-queries/actions/workflows/test.yml) 4 | 5 | Simple quantity queries mixins for Sass. Use quantity as a condition to style your items. Learn more about quantity queries in this [A List Apart article](http://alistapart.com/article/quantity-queries-for-css). See the mixins in action in this [CodePen Demo](http://codepen.io/danielguillan/pen/GgBOxm) 6 | 7 | Mixin item quantity matching examples: 8 | 9 | | | 1 item | 2 items | 3 items | 4 items | 5 items | 6 items | 10 | | --------------- | :----: | :-----: | :-----: | :-----: | :-----: | :-----: | 11 | | `at-least(4)` | | | | ✓ | ✓ | ✓ | 12 | | `at-most(4)` | ✓ | ✓ | ✓ | ✓ | | | 13 | | `between(3, 6)` | | | ✓ | ✓ | ✓ | ✓ | 14 | | `exactly(5)` | | | | | ✓ | | 15 | | `even()` | | ✓ | | ✓ | | ✓ | 16 | | `odd()` | ✓ | | ✓ | | ✓ | | 17 | | `multiple-of(3)`| | | ✓ | | | ✓ | 18 | 19 | 20 | ## Install 21 | 22 | Using npm: 23 | 24 | ```sh 25 | npm install --save-dev quantity-queries 26 | ``` 27 | 28 | Using Yarn: 29 | 30 | ```sh 31 | yarn add --dev quantity-queries 32 | ``` 33 | 34 | ## Usage 35 | 36 | Import the library: 37 | 38 | ```scss 39 | // Dart Sass 40 | @use 'quantity-queries'; 41 | ``` 42 | 43 | ```scss 44 | // LibSass 45 | @import 'quantity-queries/legacy'; 46 | ``` 47 | 48 | Note: depending on your setup you might need to use the node_modules path for the import. 49 | 50 | ```scss 51 | // Dart Sass 52 | @use '{node_modules_path}/quantity-queries/src/'; 53 | 54 | // Legacy implementations (e.g., node-sass) 55 | @import '{node_modules_path}/quantity-queries/src/legacy'; 56 | ``` 57 | 58 | ### at-least() 59 | 60 | Target the items inside elements that contain `$count` items or more: 61 | 62 | ```scss 63 | @include at-least($count, $selector) { ... } 64 | ``` 65 | 66 | ### at-most() 67 | 68 | Target the items inside elements that contain `$count` items or less: 69 | 70 | ```scss 71 | @include at-most($count, $selector) { ... } 72 | ``` 73 | 74 | ### between() 75 | 76 | Target the items inside elements that contain a range between `$first` and `$last` items: 77 | 78 | ```scss 79 | @include between($first, $last, $selector) { ... } 80 | ``` 81 | 82 | ### exactly() 83 | 84 | Target the items inside elements that contain exactly `$count` items: 85 | 86 | ```scss 87 | @include exactly($count, $selector) { ... } 88 | ``` 89 | 90 | ### even() 91 | 92 | Target the items inside elements that contain an even number of items: 93 | 94 | ```scss 95 | @include even($selector) { ... } 96 | ``` 97 | 98 | ### odd() 99 | 100 | Target the items inside elements that contain an odd number of items: 101 | 102 | ```scss 103 | @include odd($selector) { ... } 104 | ``` 105 | 106 | ### multiple-of() 107 | 108 | Target the items inside elements that contain a multiple of `$count` number of items: 109 | 110 | ```scss 111 | @include multiple-of($selector) { ... } 112 | ``` 113 | 114 | ### Example 115 | 116 | Sass input: 117 | 118 | ```scss 119 | ul > li { 120 | 121 | // Color the `li` items red when there are 6 items or more 122 | @include at-least(6) { 123 | color: red; 124 | } 125 | 126 | // Color the `li` items blue when there are 4 items or less 127 | @include at-most(4) { 128 | color: blue; 129 | } 130 | 131 | // Add a green background to `li` items when there are between 5 and 8 items 132 | @include between(5, 8) { 133 | background-color: green; 134 | } 135 | 136 | // Add a shadow to `li` items when there are exactly 8 items 137 | @include exactly(8) { 138 | box-shadow: 0 1px 3px #000; 139 | } 140 | 141 | // Add a red outline to `li` items when there is an even number of them 142 | @include even() { 143 | outline: solid 2px red; 144 | } 145 | 146 | // Add a blue outline to `li` items when there is an odd number of them 147 | @include odd() { 148 | outline: solid 2px blue; 149 | } 150 | 151 | // Span every sixth element of a grid when it and its siblings are a multiple of 6 152 | @include multiple-of(6, '*') { 153 | &:nth-child(6n + 1) { 154 | grid-row: span 2; 155 | grid-column: span 2; 156 | } 157 | } 158 | } 159 | ``` 160 | 161 | ### Custom selector 162 | 163 | The quantity queries mixins default to the current last simple selector for all the items (`li` in the above example). If you need a different selector or want the quantity query to be selector-agnostic, pass the desired selector to the mixin. 164 | 165 | ```scss 166 | 167 | nav div { 168 | @include at-least(4, '*') { ... }; // selector agnostic (universal selector) 169 | @include between(4, 8, 'span') { ... }; // use span instead of div 170 | } 171 | ``` 172 | 173 | ## Demo on [CodePen](http://codepen.io/danielguillan/pen/GgBOxm) 174 | 175 | ## Other implementations 176 | 177 | - [LESS Quantity Queries](https://github.com/adjohnson916/quantity-queries.less) by Anders D. Johnson 178 | - [PostCSS Quantity Queries](https://github.com/pascalduez/postcss-quantity-queries) by Pascal Duez 179 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "quantity-queries", 3 | "version": "1.1.0", 4 | "description": "Simple quantity queries mixins for Sass", 5 | "main": "src/index.scss", 6 | "author": "Daniel Guillan ", 7 | "license": "MIT", 8 | "repository": { 9 | "type": "git", 10 | "url": "https://github.com/danielguillan/quantity-queries.git" 11 | }, 12 | "bugs": { 13 | "url": "https://github.com/danielguillan/quantity-queries/issues" 14 | }, 15 | "homepage": "https://github.com/danielguillan/quantity-queries#readme", 16 | "keywords": [ 17 | "at-least", 18 | "at-most", 19 | "between", 20 | "count", 21 | "css", 22 | "elements", 23 | "exactly", 24 | "eyeglass-module", 25 | "quantity", 26 | "query", 27 | "sass", 28 | "scss" 29 | ], 30 | "eyeglass": { 31 | "sassDir": "src", 32 | "exports": false, 33 | "name": "quantity-queries", 34 | "needs": "*" 35 | }, 36 | "scripts": { 37 | "test": "jest" 38 | }, 39 | "dependencies": { 40 | "sass": "^1.42.1" 41 | }, 42 | "devDependencies": { 43 | "glob": "^7.2.0", 44 | "jest": "^27.2.5", 45 | "sass-true": "^6.0.1" 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /quantity-queries.gemspec: -------------------------------------------------------------------------------- 1 | require './lib/quantity-queries' 2 | 3 | Gem::Specification.new do |s| 4 | # Release Specific Information 5 | s.version = QuantityQueries::VERSION 6 | s.date = QuantityQueries::DATE 7 | 8 | # Gem Details 9 | s.name = "quantity-queries" 10 | s.rubyforge_project = "quantity-queries" 11 | s.description = %q{Simple item quantity queries mixins for Sass} 12 | s.summary = %q{Simple item quantity queries mixins for Sass} 13 | s.authors = ["Daniel Guillan"] 14 | s.email = ["daniel.guillan@gmail.com"] 15 | s.homepage = "https://github.com/danielguillan/quantity-queries" 16 | 17 | # LICENSE file 18 | s.licenses = ['MIT'] 19 | 20 | # README file 21 | s.files = ["README.md"] 22 | 23 | # CHANGELOG 24 | s.files += ["CHANGELOG.md"] 25 | 26 | # Library Files 27 | s.files += Dir.glob("lib/**/*.*") 28 | 29 | # Sass Files 30 | s.files += Dir.glob("stylesheets/**/*.*") 31 | 32 | # Gem Bookkeeping 33 | s.required_rubygems_version = ">= 1.3.6" 34 | s.rubygems_version = %q{1.3.6} 35 | 36 | # Gems Dependencies 37 | s.add_dependency("sass", ["~> 3.4"]) 38 | s.add_dependency("compass", ["~> 1.0"]) 39 | end 40 | -------------------------------------------------------------------------------- /sache.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "Quantity Queries", 3 | "description": "Simple item quantity queries mixins for Sass", 4 | "tags": [ 5 | "quantity", 6 | "queries", 7 | "helper", 8 | "count", 9 | "css", 10 | "mixins", 11 | "nth-child", 12 | "pseudo-classes" 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /src/index.scss: -------------------------------------------------------------------------------- 1 | @use 'sass:list'; 2 | @use 'sass:math'; 3 | @use 'sass:meta'; 4 | @use 'sass:selector'; 5 | 6 | // ----------------------------------------------------------------------------- 7 | // Quantity queries 8 | // ----------------------------------------------------------------------------- 9 | // Table of contents: 10 | // 1. Last Simple Selector 11 | // 2. Build Quantity Selector 12 | // 3. At least 13 | // 4. At most 14 | // 5. Between 15 | // 6. Exactly 16 | // 7. Even 17 | // 8. Odd 18 | 19 | // ----------------------------------------------------------------------------- 20 | // 1. Last Simple Selector 21 | // ----------------------------------------------------------------------------- 22 | 23 | /// Find the last simple selector in a given selector 24 | /// @access private 25 | /// @param {list | string} $selector - A single selector 26 | /// @return {string} - The last simple selector in $selector 27 | /// @example scss 28 | /// $result: _last-simple-selector(ul > li); // li 29 | 30 | @function _last-simple-selector($selector) { 31 | $parsed: selector.parse($selector); 32 | 33 | @if list.length($parsed) > 1 { 34 | @error '`#{$selector}` contains #{list.length($parsed)} selectors and the `_last-simple-selector()`function accepts only 1.'; 35 | } 36 | 37 | $last-simple-selector: list.nth(list.nth($parsed, 1), -1); 38 | 39 | @return $last-simple-selector; 40 | } 41 | 42 | // ----------------------------------------------------------------------------- 43 | // 2. Build Quantity Selector 44 | // ----------------------------------------------------------------------------- 45 | 46 | /// Builds the selector for the quantity query 47 | /// @access private 48 | /// @param {string} $selector-append - The selector to be appended 49 | /// @param {string} $last-selector - The item's selector 50 | /// @return {list} - The final quantity query selector 51 | 52 | @function _build-quantity-selector($selector-append, $last-selector) { 53 | $quantity-selector: (); 54 | 55 | @each $s in & { 56 | $last-simple-selector: '~'+ 57 | if($last-selector, $last-selector, _last-simple-selector($s)); 58 | $sel: selector.append($s, $selector-append); 59 | $sel2: selector.nest($sel, $last-simple-selector); 60 | $quantity-selector: list.append($quantity-selector, $sel, 'comma'); 61 | $quantity-selector: list.append($quantity-selector, $sel2, 'comma'); 62 | } 63 | 64 | @return $quantity-selector; 65 | } 66 | 67 | // ----------------------------------------------------------------------------- 68 | // 3. At least 69 | // ----------------------------------------------------------------------------- 70 | 71 | /// Query when total items is at least N items 72 | /// @param {number} $count - Quantity to match (equal or more) 73 | /// @example scss - Make the items color red when there are 4 items or more 74 | /// ul > li { 75 | /// @include at-least(4) { color: red; } 76 | /// } 77 | /// @example scss - Make the items color blue when there are 6 items or more and use '*' (element agnostic) as the item selector 78 | /// ul > li { 79 | /// @include at-least(6, '*') { color: blue; } 80 | /// } 81 | 82 | @mixin at-least($count, $selector: null) { 83 | $selector-append: ':nth-last-child(n+#{$count})'; 84 | 85 | @if meta.type-of($count) != 86 | 'number' or not 87 | math.is-unitless($count) or 88 | $count < 89 | 1 90 | { 91 | @error '`#{$count}` is not a valid number for `at-least`'; 92 | } 93 | 94 | @if $selector != 95 | null and 96 | (meta.type-of($selector) != 'string' or list.length($selector) > 1) 97 | { 98 | @error '`#{$selector}` is not a valid selector for `at-least`'; 99 | } 100 | 101 | $at-least-selector: _build-quantity-selector($selector-append, $selector); 102 | 103 | @at-root #{$at-least-selector} { 104 | @content; 105 | } 106 | } 107 | 108 | // ----------------------------------------------------------------------------- 109 | // 4. At most 110 | // ----------------------------------------------------------------------------- 111 | 112 | /// Query when total items is at most N items 113 | /// @param {number} $count - Quantity to match (equal or less) 114 | /// @example scss - Make the items color red when there are 4 items or less 115 | /// ul > li { 116 | /// @include at-most(4) { color: red; } 117 | /// } 118 | /// @example scss - Make the items color blue when there are 6 items or less and use '*' (element agnostic) as the item selector 119 | /// ul > li { 120 | /// @include at-most(6, '*') { color: blue; } 121 | /// } 122 | 123 | @mixin at-most($count, $selector: null) { 124 | $selector-append: ':nth-last-child(-n+#{$count}):first-child'; 125 | 126 | @if meta.type-of($count) != 127 | 'number' or not 128 | math.is-unitless($count) or 129 | $count < 130 | 1 131 | { 132 | @error '`#{$count}` is not a valid number for `at-most`.'; 133 | } 134 | 135 | @if $selector != 136 | null and 137 | (meta.type-of($selector) != 'string' or list.length($selector) > 1) 138 | { 139 | @error '`#{$selector}` is not a valid selector for `at-most`'; 140 | } 141 | 142 | $at-most-selector: _build-quantity-selector($selector-append, $selector); 143 | 144 | @at-root #{$at-most-selector} { 145 | @content; 146 | } 147 | } 148 | 149 | // ----------------------------------------------------------------------------- 150 | // 5. Between 151 | // ----------------------------------------------------------------------------- 152 | 153 | /// Query when total items is at least X items and at most Y items 154 | /// @param {number} $at-least - Lower quantity of items to match 155 | /// @param {number} $at-most - Higher quantity of items to match 156 | /// @example scss - Make the items color red when there are at least 2 and at most 4 items 157 | /// ul > li { 158 | /// @include between(4, 8) { color: red; } 159 | /// } 160 | /// @example scss - Make the items color blue when there are at least 6 items and at most 10 items and use '*' (element agnostic) as the item selector 161 | /// ul > li { 162 | /// @include between(6, 10, '*') { color: blue; } 163 | /// } 164 | 165 | @mixin between($first, $last, $selector: null) { 166 | $selector-append: ':nth-last-child(n+#{$first}):nth-last-child(-n+#{$last}):first-child'; 167 | 168 | @if meta.type-of($first) != 169 | 'number' or not 170 | math.is-unitless($first) or 171 | $first < 172 | 1 173 | { 174 | @error '`#{$first}` is not a valid number for `between`'; 175 | } 176 | 177 | @if meta.type-of($last) != 178 | 'number' or not 179 | math.is-unitless($last) or 180 | $last < 181 | 1 182 | { 183 | @error '`#{$last}` is not a valid number for `between`'; 184 | } 185 | 186 | @if $first > $last { 187 | @error '#{$first} can´t be larger that #{$last} for `between`'; 188 | } 189 | 190 | @if $selector != 191 | null and 192 | (meta.type-of($selector) != 'string' or list.length($selector) > 1) 193 | { 194 | @error '`#{$selector}` is not a valid selector for `between`'; 195 | } 196 | 197 | $between-selector: _build-quantity-selector($selector-append, $selector); 198 | 199 | @at-root #{$between-selector} { 200 | @content; 201 | } 202 | } 203 | 204 | // ----------------------------------------------------------------------------- 205 | // 6. Exactly 206 | // ----------------------------------------------------------------------------- 207 | 208 | /// Query when total items is exactly N items 209 | /// @param {number} $count - Quantity to match (equal) 210 | /// @example scss - Make the items color red when there are exactly 4 items 211 | /// ul > li { 212 | /// @include exactly(4) { color: red; } 213 | /// } 214 | /// @example scss - Make the items color blue when there are exactly 6 items and use '*' (element agnostic) as the item selector 215 | /// ul > li { 216 | /// @include exactly(6, '*') { color: blue; } 217 | /// } 218 | 219 | @mixin exactly($count, $selector: null) { 220 | $selector-append: ':nth-last-child(#{$count}):first-child'; 221 | 222 | @if meta.type-of($count) != 223 | 'number' or not 224 | math.is-unitless($count) or 225 | $count < 226 | 1 227 | { 228 | @error '`#{$count}` is not a valid number for `exactly`'; 229 | } 230 | 231 | @if $selector != 232 | null and 233 | (meta.type-of($selector) != 'string' or list.length($selector) > 1) 234 | { 235 | @error '`#{$selector}` is not a valid selector for `exactly`'; 236 | } 237 | 238 | $exactly-selector: _build-quantity-selector($selector-append, $selector); 239 | 240 | @at-root #{$exactly-selector} { 241 | @content; 242 | } 243 | } 244 | 245 | // ----------------------------------------------------------------------------- 246 | // 7. Even 247 | // ----------------------------------------------------------------------------- 248 | 249 | /// Query an even number of items 250 | /// @param {list | string} $selector - A single selector 251 | /// @example scss - Make the items color red when items ar an even number 252 | /// ul > li { 253 | /// @include even() { color: red; } 254 | /// } 255 | 256 | @mixin even($selector: null) { 257 | $selector-append: ':nth-last-child(even):first-child'; 258 | 259 | @if $selector != 260 | null and 261 | (meta.type-of($selector) != 'string' or list.length($selector) > 1) 262 | { 263 | @error '`#{$selector}` is not a valid selector for `even`'; 264 | } 265 | 266 | $even-selector: _build-quantity-selector($selector-append, $selector); 267 | 268 | @at-root #{$even-selector} { 269 | @content; 270 | } 271 | } 272 | 273 | // ----------------------------------------------------------------------------- 274 | // 8. Odd 275 | // ----------------------------------------------------------------------------- 276 | 277 | /// Query an odd number of items 278 | /// @param {list | string} $selector - A single selector 279 | /// @example scss - Make the items color red when items ar an odd number 280 | /// ul > li { 281 | /// @include odd() { color: red; } 282 | /// } 283 | 284 | @mixin odd($selector: null) { 285 | $selector-append: ':nth-last-child(odd):first-child'; 286 | 287 | @if $selector != 288 | null and 289 | (meta.type-of($selector) != 'string' or list.length($selector) > 1) 290 | { 291 | @error '`#{$selector}` is not a valid selector for `odd`'; 292 | } 293 | 294 | $odd-selector: _build-quantity-selector($selector-append, $selector); 295 | 296 | @at-root #{$odd-selector} { 297 | @content; 298 | } 299 | } 300 | 301 | // ----------------------------------------------------------------------------- 302 | // 9. Multiple of 303 | // ----------------------------------------------------------------------------- 304 | 305 | /// Query when total items is multiple of N 306 | /// @param {number} $count - Quantity to match (equal) 307 | /// @example scss - Make the items color red when the total of siblings is multiple of 3 items 308 | /// ul > li { 309 | /// @include multiple-of(3) { color: red; } 310 | /// } 311 | /// @example scss - Make the items color blue when the total of siblings is multiple of 5 items and use '*' (element agnostic) as the item selector 312 | /// ul > li { 313 | /// @include multiple-of(5, '*') { color: blue; } 314 | /// } 315 | 316 | @mixin multiple-of($count, $selector: null) { 317 | $selector-append: ':nth-last-child(#{$count}n):first-child'; 318 | 319 | @if meta.type-of($count) != 320 | 'number' or not 321 | math.is-unitless($count) or 322 | $count < 323 | 1 324 | { 325 | @error '`#{$count}` is not a valid number for `multiple-of`'; 326 | } 327 | 328 | @if $selector != 329 | null and 330 | (meta.type-of($selector) != 'string' or list.length($selector) > 1) 331 | { 332 | @error '`#{$selector}` is not a valid selector for `multiple-of`'; 333 | } 334 | 335 | $multiple-of-selector: _build-quantity-selector($selector-append, $selector); 336 | 337 | @at-root #{$multiple-of-selector} { 338 | @content; 339 | } 340 | } 341 | -------------------------------------------------------------------------------- /src/legacy.scss: -------------------------------------------------------------------------------- 1 | // ----------------------------------------------------------------------------- 2 | // Quantity queries (Legacy) 3 | // ----------------------------------------------------------------------------- 4 | // Legacy module to support deprecated Sass implementations (node-sass, ruby-sass) 5 | // 6 | // Table of contents: 7 | // 1. Last Simple Selector 8 | // 2. Build Quantity Selector 9 | // 3. At least 10 | // 4. At most 11 | // 5. Between 12 | // 6. Exactly 13 | // 7. Even 14 | // 8. Odd 15 | 16 | // ----------------------------------------------------------------------------- 17 | // 1. Last Simple Selector 18 | // ----------------------------------------------------------------------------- 19 | 20 | /// Find the last simple selector in a given selector 21 | /// @access private 22 | /// @param {list | string} $selector - A single selector 23 | /// @return {string} - The last simple selector in $selector 24 | /// @example scss 25 | /// $result: _last-simple-selector(ul > li); // li 26 | 27 | @function _last-simple-selector($selector) { 28 | $parsed: selector-parse($selector); 29 | 30 | @if length($parsed) > 1 { 31 | @error '`#{$selector}` contains #{length($parsed)} selectors and the `_last-simple-selector()`function accepts only 1.'; 32 | } 33 | 34 | $last-simple-selector: nth(nth($parsed, 1), -1); 35 | 36 | @return $last-simple-selector; 37 | } 38 | 39 | // ----------------------------------------------------------------------------- 40 | // 2. Build Quantity Selector 41 | // ----------------------------------------------------------------------------- 42 | 43 | /// Builds the selector for the quantity query 44 | /// @access private 45 | /// @param {string} $selector-append - The selector to be appended 46 | /// @param {string} $last-selector - The item's selector 47 | /// @return {list} - The final quantity query selector 48 | 49 | @function _build-quantity-selector($selector-append, $last-selector) { 50 | $quantity-selector: (); 51 | 52 | @each $s in & { 53 | $last-simple-selector: '~'+ 54 | if($last-selector, $last-selector, _last-simple-selector($s)); 55 | $sel: selector-append($s, $selector-append); 56 | $sel2: selector-nest($sel, $last-simple-selector); 57 | $quantity-selector: append($quantity-selector, $sel, 'comma'); 58 | $quantity-selector: append($quantity-selector, $sel2, 'comma'); 59 | } 60 | 61 | @return $quantity-selector; 62 | } 63 | 64 | // ----------------------------------------------------------------------------- 65 | // 3. At least 66 | // ----------------------------------------------------------------------------- 67 | 68 | /// Query when total items is at least N items 69 | /// @param {number} $count - Quantity to match (equal or more) 70 | /// @example scss - Make the items color red when there are 4 items or more 71 | /// ul > li { 72 | /// @include at-least(4) { color: red; } 73 | /// } 74 | /// @example scss - Make the items color blue when there are 6 items or more and use '*' (element agnostic) as the item selector 75 | /// ul > li { 76 | /// @include at-least(6, '*') { color: blue; } 77 | /// } 78 | 79 | @mixin at-least($count, $selector: null) { 80 | $selector-append: ':nth-last-child(n+#{$count})'; 81 | 82 | @if type-of($count) != 'number' or not unitless($count) or $count < 1 { 83 | @error '`#{$count}` is not a valid number for `at-least`'; 84 | } 85 | 86 | @if $selector != 87 | null and 88 | (type-of($selector) != 'string' or length($selector) > 1) 89 | { 90 | @error '`#{$selector}` is not a valid selector for `at-least`'; 91 | } 92 | 93 | $at-least-selector: _build-quantity-selector($selector-append, $selector); 94 | 95 | @at-root #{$at-least-selector} { 96 | @content; 97 | } 98 | } 99 | 100 | // ----------------------------------------------------------------------------- 101 | // 4. At most 102 | // ----------------------------------------------------------------------------- 103 | 104 | /// Query when total items is at most N items 105 | /// @param {number} $count - Quantity to match (equal or less) 106 | /// @example scss - Make the items color red when there are 4 items or less 107 | /// ul > li { 108 | /// @include at-most(4) { color: red; } 109 | /// } 110 | /// @example scss - Make the items color blue when there are 6 items or less and use '*' (element agnostic) as the item selector 111 | /// ul > li { 112 | /// @include at-most(6, '*') { color: blue; } 113 | /// } 114 | 115 | @mixin at-most($count, $selector: null) { 116 | $selector-append: ':nth-last-child(-n+#{$count}):first-child'; 117 | 118 | @if type-of($count) != 'number' or not unitless($count) or $count < 1 { 119 | @error '`#{$count}` is not a valid number for `at-most`.'; 120 | } 121 | 122 | @if $selector != 123 | null and 124 | (type-of($selector) != 'string' or length($selector) > 1) 125 | { 126 | @error '`#{$selector}` is not a valid selector for `at-most`'; 127 | } 128 | 129 | $at-most-selector: _build-quantity-selector($selector-append, $selector); 130 | 131 | @at-root #{$at-most-selector} { 132 | @content; 133 | } 134 | } 135 | 136 | // ----------------------------------------------------------------------------- 137 | // 5. Between 138 | // ----------------------------------------------------------------------------- 139 | 140 | /// Query when total items is at least X items and at most Y items 141 | /// @param {number} $at-least - Lower quantity of items to match 142 | /// @param {number} $at-most - Higher quantity of items to match 143 | /// @example scss - Make the items color red when there are at least 2 and at most 4 items 144 | /// ul > li { 145 | /// @include between(4, 8) { color: red; } 146 | /// } 147 | /// @example scss - Make the items color blue when there are at least 6 items and at most 10 items and use '*' (element agnostic) as the item selector 148 | /// ul > li { 149 | /// @include between(6, 10, '*') { color: blue; } 150 | /// } 151 | 152 | @mixin between($first, $last, $selector: null) { 153 | $selector-append: ':nth-last-child(n+#{$first}):nth-last-child(-n+#{$last}):first-child'; 154 | 155 | @if type-of($first) != 'number' or not unitless($first) or $first < 1 { 156 | @error '`#{$first}` is not a valid number for `between`'; 157 | } 158 | 159 | @if type-of($last) != 'number' or not unitless($last) or $last < 1 { 160 | @error '`#{$last}` is not a valid number for `between`'; 161 | } 162 | 163 | @if $first > $last { 164 | @error '#{$first} can´t be larger that #{$last} for `between`'; 165 | } 166 | 167 | @if $selector != 168 | null and 169 | (type-of($selector) != 'string' or length($selector) > 1) 170 | { 171 | @error '`#{$selector}` is not a valid selector for `between`'; 172 | } 173 | 174 | $between-selector: _build-quantity-selector($selector-append, $selector); 175 | 176 | @at-root #{$between-selector} { 177 | @content; 178 | } 179 | } 180 | 181 | // ----------------------------------------------------------------------------- 182 | // 6. Exactly 183 | // ----------------------------------------------------------------------------- 184 | 185 | /// Query when total items is exactly N items 186 | /// @param {number} $count - Quantity to match (equal) 187 | /// @example scss - Make the items color red when there are exactly 4 items 188 | /// ul > li { 189 | /// @include exactly(4) { color: red; } 190 | /// } 191 | /// @example scss - Make the items color blue when there are exactly 6 items and use '*' (element agnostic) as the item selector 192 | /// ul > li { 193 | /// @include exactly(6, '*') { color: blue; } 194 | /// } 195 | 196 | @mixin exactly($count, $selector: null) { 197 | $selector-append: ':nth-last-child(#{$count}):first-child'; 198 | 199 | @if type-of($count) != 'number' or not unitless($count) or $count < 1 { 200 | @error '`#{$count}` is not a valid number for `exactly`'; 201 | } 202 | 203 | @if $selector != 204 | null and 205 | (type-of($selector) != 'string' or length($selector) > 1) 206 | { 207 | @error '`#{$selector}` is not a valid selector for `exactly`'; 208 | } 209 | 210 | $exactly-selector: _build-quantity-selector($selector-append, $selector); 211 | 212 | @at-root #{$exactly-selector} { 213 | @content; 214 | } 215 | } 216 | 217 | // ----------------------------------------------------------------------------- 218 | // 7. Even 219 | // ----------------------------------------------------------------------------- 220 | 221 | /// Query an even number of items 222 | /// @param {list | string} $selector - A single selector 223 | /// @example scss - Make the items color red when items ar an even number 224 | /// ul > li { 225 | /// @include even() { color: red; } 226 | /// } 227 | 228 | @mixin even($selector: null) { 229 | $selector-append: ':nth-last-child(even):first-child'; 230 | 231 | @if $selector != 232 | null and 233 | (type-of($selector) != 'string' or length($selector) > 1) 234 | { 235 | @error '`#{$selector}` is not a valid selector for `even`'; 236 | } 237 | 238 | $even-selector: _build-quantity-selector($selector-append, $selector); 239 | 240 | @at-root #{$even-selector} { 241 | @content; 242 | } 243 | } 244 | 245 | // ----------------------------------------------------------------------------- 246 | // 8. Odd 247 | // ----------------------------------------------------------------------------- 248 | 249 | /// Query an odd number of items 250 | /// @param {list | string} $selector - A single selector 251 | /// @example scss - Make the items color red when items ar an odd number 252 | /// ul > li { 253 | /// @include odd() { color: red; } 254 | /// } 255 | 256 | @mixin odd($selector: null) { 257 | $selector-append: ':nth-last-child(odd):first-child'; 258 | 259 | @if $selector != 260 | null and 261 | (type-of($selector) != 'string' or length($selector) > 1) 262 | { 263 | @error '`#{$selector}` is not a valid selector for `odd`'; 264 | } 265 | 266 | $odd-selector: _build-quantity-selector($selector-append, $selector); 267 | 268 | @at-root #{$odd-selector} { 269 | @content; 270 | } 271 | } 272 | 273 | // ----------------------------------------------------------------------------- 274 | // 9. Multiple of 275 | // ----------------------------------------------------------------------------- 276 | 277 | /// Query when total items is multiple of N 278 | /// @param {number} $count - Quantity to match (equal) 279 | /// @example scss - Make the items color red when the total of siblings is multiple of 3 items 280 | /// ul > li { 281 | /// @include multiple-of(3) { color: red; } 282 | /// } 283 | /// @example scss - Make the items color blue when the total of siblings is multiple of 5 items and use '*' (element agnostic) as the item selector 284 | /// ul > li { 285 | /// @include multiple-of(5, '*') { color: blue; } 286 | /// } 287 | 288 | @mixin multiple-of($count, $selector: null) { 289 | $selector-append: ':nth-last-child(#{$count}n):first-child'; 290 | 291 | @if type-of($count) != 'number' or not unitless($count) or $count < 1 292 | { 293 | @error '`#{$count}` is not a valid number for `multiple-of`'; 294 | } 295 | 296 | @if $selector != 297 | null and 298 | (type-of($selector) != 'string' or length($selector) > 1) 299 | { 300 | @error '`#{$selector}` is not a valid selector for `multiple-of`'; 301 | } 302 | 303 | $multiple-of-selector: _build-quantity-selector($selector-append, $selector); 304 | 305 | @at-root #{$multiple-of-selector} { 306 | @content; 307 | } 308 | } 309 | -------------------------------------------------------------------------------- /tests/mixins.spec.scss: -------------------------------------------------------------------------------- 1 | @use '../src' as *; 2 | @use 'true' as *; 3 | 4 | @include describe('exactly()') { 5 | @include it( 6 | 'should return content in a selector matching an exact number of elements' 7 | ) { 8 | @include assert { 9 | @include output { 10 | ul > li { 11 | @include exactly(3) { 12 | color: green; 13 | } 14 | } 15 | } 16 | 17 | @include expect { 18 | ul > li:nth-last-child(3):first-child, 19 | ul > li:nth-last-child(3):first-child ~ li { 20 | color: green; 21 | } 22 | } 23 | } 24 | } 25 | 26 | @include it( 27 | 'should return content in a selector matching an exact number of elements using a custom child selector' 28 | ) { 29 | @include assert { 30 | @include output { 31 | ul > li { 32 | @include exactly(3, '*') { 33 | color: green; 34 | } 35 | } 36 | } 37 | 38 | @include expect { 39 | ul > li:nth-last-child(3):first-child, 40 | ul > li:nth-last-child(3):first-child ~ * { 41 | color: green; 42 | } 43 | } 44 | } 45 | } 46 | 47 | @include it( 48 | 'should return content in a selector matching an exact number of elements for multiple selectors' 49 | ) { 50 | @include assert { 51 | @include output { 52 | ul > li, 53 | nav > div { 54 | @include exactly(3) { 55 | color: green; 56 | } 57 | } 58 | } 59 | 60 | @include expect { 61 | ul > li:nth-last-child(3):first-child, 62 | ul > li:nth-last-child(3):first-child ~ li, 63 | nav > div:nth-last-child(3):first-child, 64 | nav > div:nth-last-child(3):first-child ~ div { 65 | color: green; 66 | } 67 | } 68 | } 69 | } 70 | 71 | @include it( 72 | 'should return content in a selector matching an exact number of elements for multiple selectors and using a custom child selector' 73 | ) { 74 | @include assert { 75 | @include output { 76 | ul > li, 77 | nav > div { 78 | @include exactly(3, '*') { 79 | color: green; 80 | } 81 | } 82 | } 83 | 84 | @include expect { 85 | ul > li:nth-last-child(3):first-child, 86 | ul > li:nth-last-child(3):first-child ~ *, 87 | nav > div:nth-last-child(3):first-child, 88 | nav > div:nth-last-child(3):first-child ~ * { 89 | color: green; 90 | } 91 | } 92 | } 93 | } 94 | } 95 | 96 | @include describe('between()') { 97 | @include it( 98 | 'should return content in a selector matching a range of elements' 99 | ) { 100 | @include assert { 101 | @include output { 102 | ul > li { 103 | @include between(4, 6) { 104 | color: green; 105 | } 106 | } 107 | } 108 | 109 | @include expect { 110 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child, 111 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child ~ li { 112 | color: green; 113 | } 114 | } 115 | } 116 | } 117 | 118 | @include it( 119 | 'should return content in a selector matching a range of elements using a custom child selector' 120 | ) { 121 | @include assert { 122 | @include output { 123 | ul > li { 124 | @include between(4, 6, '*') { 125 | color: green; 126 | } 127 | } 128 | } 129 | 130 | @include expect { 131 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child, 132 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child ~ * { 133 | color: green; 134 | } 135 | } 136 | } 137 | } 138 | 139 | @include it( 140 | 'should return content in a selector matching a range of elements for multiple selectors' 141 | ) { 142 | @include assert { 143 | @include output { 144 | ul > li, 145 | nav > div { 146 | @include between(4, 6) { 147 | color: green; 148 | } 149 | } 150 | } 151 | 152 | @include expect { 153 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child, 154 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child ~ li, 155 | nav > div:nth-last-child(n + 4):nth-last-child(-n + 6):first-child, 156 | nav 157 | > div:nth-last-child(n + 4):nth-last-child(-n + 6):first-child 158 | ~ div { 159 | color: green; 160 | } 161 | } 162 | } 163 | } 164 | 165 | @include it( 166 | 'should return content in a selector matching a range of elements and using a custom child selector' 167 | ) { 168 | @include assert { 169 | @include output { 170 | ul > li, 171 | nav > div { 172 | @include between(4, 6, '*') { 173 | color: green; 174 | } 175 | } 176 | } 177 | 178 | @include expect { 179 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child, 180 | ul > li:nth-last-child(n + 4):nth-last-child(-n + 6):first-child ~ *, 181 | nav > div:nth-last-child(n + 4):nth-last-child(-n + 6):first-child, 182 | nav > div:nth-last-child(n + 4):nth-last-child(-n + 6):first-child ~ * { 183 | color: green; 184 | } 185 | } 186 | } 187 | } 188 | } 189 | 190 | @include describe('at-least()') { 191 | @include it( 192 | 'should return content in a selector matching a minimum number of elements' 193 | ) { 194 | @include assert { 195 | @include output { 196 | ul > li { 197 | @include at-least(4) { 198 | color: green; 199 | } 200 | } 201 | } 202 | 203 | @include expect { 204 | ul > li:nth-last-child(n + 4), 205 | ul > li:nth-last-child(n + 4) ~ li { 206 | color: green; 207 | } 208 | } 209 | } 210 | } 211 | 212 | @include it( 213 | 'should return content in a selector matching a minimum number of elements using a custom child selector' 214 | ) { 215 | @include assert { 216 | @include output { 217 | ul > li { 218 | @include at-least(4, '*') { 219 | color: green; 220 | } 221 | } 222 | } 223 | 224 | @include expect { 225 | ul > li:nth-last-child(n + 4), 226 | ul > li:nth-last-child(n + 4) ~ * { 227 | color: green; 228 | } 229 | } 230 | } 231 | } 232 | 233 | @include it( 234 | 'should return content in a selector matching a minimum number of elements for multiple selectors' 235 | ) { 236 | @include assert { 237 | @include output { 238 | ul > li, 239 | nav > div { 240 | @include at-least(4) { 241 | color: green; 242 | } 243 | } 244 | } 245 | 246 | @include expect { 247 | ul > li:nth-last-child(n + 4), 248 | ul > li:nth-last-child(n + 4) ~ li, 249 | nav > div:nth-last-child(n + 4), 250 | nav > div:nth-last-child(n + 4) ~ div { 251 | color: green; 252 | } 253 | } 254 | } 255 | } 256 | 257 | @include it( 258 | 'should return content in a selector matching a minimum number of elements for multiple selectors and using a custom child selector' 259 | ) { 260 | @include assert { 261 | @include output { 262 | ul > li, 263 | nav > div { 264 | @include at-least(4, '*') { 265 | color: green; 266 | } 267 | } 268 | } 269 | 270 | @include expect { 271 | ul > li:nth-last-child(n + 4), 272 | ul > li:nth-last-child(n + 4) ~ *, 273 | nav > div:nth-last-child(n + 4), 274 | nav > div:nth-last-child(n + 4) ~ * { 275 | color: green; 276 | } 277 | } 278 | } 279 | } 280 | } 281 | 282 | @include describe('at-most()') { 283 | @include it( 284 | 'should return content in a selector matching a maximum number of elements' 285 | ) { 286 | @include assert { 287 | @include output { 288 | ul > li { 289 | @include at-most(4) { 290 | color: green; 291 | } 292 | } 293 | } 294 | 295 | @include expect { 296 | ul > li:nth-last-child(-n + 4):first-child, 297 | ul > li:nth-last-child(-n + 4):first-child ~ li { 298 | color: green; 299 | } 300 | } 301 | } 302 | } 303 | 304 | @include it( 305 | 'should return content in a selector matching a maximum number of elements using a custom selector' 306 | ) { 307 | @include assert { 308 | @include output { 309 | ul > li { 310 | @include at-most(4, '*') { 311 | color: green; 312 | } 313 | } 314 | } 315 | 316 | @include expect { 317 | ul > li:nth-last-child(-n + 4):first-child, 318 | ul > li:nth-last-child(-n + 4):first-child ~ * { 319 | color: green; 320 | } 321 | } 322 | } 323 | } 324 | 325 | @include it( 326 | 'should return content in a selector matching a maximum number of elements for multiple selectors' 327 | ) { 328 | @include assert { 329 | @include output { 330 | ul > li, 331 | nav > div { 332 | @include at-most(4) { 333 | color: green; 334 | } 335 | } 336 | } 337 | 338 | @include expect { 339 | ul > li:nth-last-child(-n + 4):first-child, 340 | ul > li:nth-last-child(-n + 4):first-child ~ li, 341 | nav > div:nth-last-child(-n + 4):first-child, 342 | nav > div:nth-last-child(-n + 4):first-child ~ div { 343 | color: green; 344 | } 345 | } 346 | } 347 | } 348 | 349 | @include it( 350 | 'should return content in a selector matching a maximum number of elements and using a custom child selector' 351 | ) { 352 | @include assert { 353 | @include output { 354 | ul > li, 355 | nav > div { 356 | @include at-most(4, '*') { 357 | color: green; 358 | } 359 | } 360 | } 361 | 362 | @include expect { 363 | ul > li:nth-last-child(-n + 4):first-child, 364 | ul > li:nth-last-child(-n + 4):first-child ~ *, 365 | nav > div:nth-last-child(-n + 4):first-child, 366 | nav > div:nth-last-child(-n + 4):first-child ~ * { 367 | color: green; 368 | } 369 | } 370 | } 371 | } 372 | } 373 | 374 | @include describe('even()') { 375 | @include it( 376 | 'should return content in a selector matching an even number of elements' 377 | ) { 378 | @include assert { 379 | @include output { 380 | ul > li { 381 | @include even() { 382 | color: green; 383 | } 384 | } 385 | } 386 | 387 | @include expect { 388 | ul > li:nth-last-child(even):first-child, 389 | ul > li:nth-last-child(even):first-child ~ li { 390 | color: green; 391 | } 392 | } 393 | } 394 | } 395 | 396 | @include it( 397 | 'should return content in a selector matching an even number of elements using a custom selector' 398 | ) { 399 | @include assert { 400 | @include output { 401 | ul > li { 402 | @include even('*') { 403 | color: green; 404 | } 405 | } 406 | } 407 | 408 | @include expect { 409 | ul > li:nth-last-child(even):first-child, 410 | ul > li:nth-last-child(even):first-child ~ * { 411 | color: green; 412 | } 413 | } 414 | } 415 | } 416 | 417 | @include it( 418 | 'should return content in a selector matching an even number of elements for multiple selectors' 419 | ) { 420 | @include assert { 421 | @include output { 422 | ul > li, 423 | nav > div { 424 | @include even() { 425 | color: green; 426 | } 427 | } 428 | } 429 | 430 | @include expect { 431 | ul > li:nth-last-child(even):first-child, 432 | ul > li:nth-last-child(even):first-child ~ li, 433 | nav > div:nth-last-child(even):first-child, 434 | nav > div:nth-last-child(even):first-child ~ div { 435 | color: green; 436 | } 437 | } 438 | } 439 | } 440 | 441 | @include it( 442 | 'should return content in a selector matching an even number of elements for multiple selectors and using a custom child selector' 443 | ) { 444 | @include assert { 445 | @include output { 446 | ul > li, 447 | nav > div { 448 | @include even('*') { 449 | color: green; 450 | } 451 | } 452 | } 453 | 454 | @include expect { 455 | ul > li:nth-last-child(even):first-child, 456 | ul > li:nth-last-child(even):first-child ~ *, 457 | nav > div:nth-last-child(even):first-child, 458 | nav > div:nth-last-child(even):first-child ~ * { 459 | color: green; 460 | } 461 | } 462 | } 463 | } 464 | } 465 | 466 | @include describe('odd()') { 467 | @include it( 468 | 'should return content in a selector matching an odd number of elements' 469 | ) { 470 | @include assert { 471 | @include output { 472 | ul > li { 473 | @include odd() { 474 | color: green; 475 | } 476 | } 477 | } 478 | 479 | @include expect { 480 | ul > li:nth-last-child(odd):first-child, 481 | ul > li:nth-last-child(odd):first-child ~ li { 482 | color: green; 483 | } 484 | } 485 | } 486 | } 487 | 488 | @include it( 489 | 'should return content in a selector matching an odd number of elements using a custom selector' 490 | ) { 491 | @include assert { 492 | @include output { 493 | ul > li { 494 | @include odd('*') { 495 | color: green; 496 | } 497 | } 498 | } 499 | 500 | @include expect { 501 | ul > li:nth-last-child(odd):first-child, 502 | ul > li:nth-last-child(odd):first-child ~ * { 503 | color: green; 504 | } 505 | } 506 | } 507 | } 508 | 509 | @include it( 510 | 'should return content in a selector matching an odd number of elements for multiple selectors' 511 | ) { 512 | @include assert { 513 | @include output { 514 | ul > li, 515 | nav > div { 516 | @include odd() { 517 | color: green; 518 | } 519 | } 520 | } 521 | 522 | @include expect { 523 | ul > li:nth-last-child(odd):first-child, 524 | ul > li:nth-last-child(odd):first-child ~ li, 525 | nav > div:nth-last-child(odd):first-child, 526 | nav > div:nth-last-child(odd):first-child ~ div { 527 | color: green; 528 | } 529 | } 530 | } 531 | } 532 | 533 | @include it( 534 | 'should return content in a selector matching an odd number of elements for multiple selectors and using a custom child selector' 535 | ) { 536 | @include assert { 537 | @include output { 538 | ul > li, 539 | nav > div { 540 | @include odd('*') { 541 | color: green; 542 | } 543 | } 544 | } 545 | 546 | @include expect { 547 | ul > li:nth-last-child(odd):first-child, 548 | ul > li:nth-last-child(odd):first-child ~ *, 549 | nav > div:nth-last-child(odd):first-child, 550 | nav > div:nth-last-child(odd):first-child ~ * { 551 | color: green; 552 | } 553 | } 554 | } 555 | } 556 | } 557 | 558 | @include describe('multiple-of()') { 559 | @include it( 560 | 'should return content in a selector matching a multiple of 4 elements' 561 | ) { 562 | @include assert { 563 | @include output { 564 | ul > li { 565 | @include multiple-of(4) { 566 | color: green; 567 | } 568 | } 569 | } 570 | 571 | @include expect { 572 | ul > li:nth-last-child(4n):first-child, 573 | ul > li:nth-last-child(4n):first-child ~ li { 574 | color: green; 575 | } 576 | } 577 | } 578 | } 579 | 580 | @include it( 581 | 'should return content in a selector matching a multiple of 4 elements using a custom selector' 582 | ) { 583 | @include assert { 584 | @include output { 585 | ul > li { 586 | @include multiple-of(4, '*') { 587 | color: green; 588 | } 589 | } 590 | } 591 | 592 | @include expect { 593 | ul > li:nth-last-child(4n):first-child, 594 | ul > li:nth-last-child(4n):first-child ~ * { 595 | color: green; 596 | } 597 | } 598 | } 599 | } 600 | 601 | @include it( 602 | 'should return content in a selector matching a multiple of 4 elements for multiple selectors' 603 | ) { 604 | @include assert { 605 | @include output { 606 | ul > li, 607 | nav > div { 608 | @include multiple-of(4) { 609 | color: green; 610 | } 611 | } 612 | } 613 | 614 | @include expect { 615 | ul > li:nth-last-child(4n):first-child, 616 | ul > li:nth-last-child(4n):first-child ~ li, 617 | nav > div:nth-last-child(4n):first-child, 618 | nav > div:nth-last-child(4n):first-child ~ div { 619 | color: green; 620 | } 621 | } 622 | } 623 | } 624 | 625 | @include it( 626 | 'should return content in a selector matching a multiple of 4 elements and using a custom child selector' 627 | ) { 628 | @include assert { 629 | @include output { 630 | ul > li, 631 | nav > div { 632 | @include multiple-of(4, '*') { 633 | color: green; 634 | } 635 | } 636 | } 637 | 638 | @include expect { 639 | ul > li:nth-last-child(4n):first-child, 640 | ul > li:nth-last-child(4n):first-child ~ *, 641 | nav > div:nth-last-child(4n):first-child, 642 | nav > div:nth-last-child(4n):first-child ~ * { 643 | color: green; 644 | } 645 | } 646 | } 647 | } 648 | } 649 | -------------------------------------------------------------------------------- /tests/scss.spec.js: -------------------------------------------------------------------------------- 1 | const glob = require('glob'); 2 | const path = require('path'); 3 | const sassTrue = require('sass-true'); 4 | 5 | describe('Sass', () => { 6 | const testFiles = glob.sync( 7 | path.resolve(process.cwd(), 'tests/**/*.spec.scss') 8 | ); 9 | 10 | testFiles.forEach((file) => sassTrue.runSass({ file }, { describe, it })); 11 | }); 12 | -------------------------------------------------------------------------------- /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.13", "@babel/code-frame@^7.14.5", "@babel/code-frame@^7.15.8": 6 | version "7.15.8" 7 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.15.8.tgz#45990c47adadb00c03677baa89221f7cc23d2503" 8 | integrity sha512-2IAnmn8zbvC/jKYhq5Ki9I+DwjlrtMPUCH/CpHvqI4dNnlwHwsxoIhlc8WcYY5LSYknXQtAlFYuHfqAFCvQ4Wg== 9 | dependencies: 10 | "@babel/highlight" "^7.14.5" 11 | 12 | "@babel/compat-data@^7.15.0": 13 | version "7.15.0" 14 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.15.0.tgz#2dbaf8b85334796cafbb0f5793a90a2fc010b176" 15 | integrity sha512-0NqAC1IJE0S0+lL1SWFMxMkz1pKCNCjI4tr2Zx4LJSXxCLAdr6KyArnY+sno5m3yH9g737ygOyPABDsnXkpxiA== 16 | 17 | "@babel/core@^7.1.0", "@babel/core@^7.7.2", "@babel/core@^7.7.5": 18 | version "7.15.8" 19 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.15.8.tgz#195b9f2bffe995d2c6c159e72fe525b4114e8c10" 20 | integrity sha512-3UG9dsxvYBMYwRv+gS41WKHno4K60/9GPy1CJaH6xy3Elq8CTtvtjT5R5jmNhXfCYLX2mTw+7/aq5ak/gOE0og== 21 | dependencies: 22 | "@babel/code-frame" "^7.15.8" 23 | "@babel/generator" "^7.15.8" 24 | "@babel/helper-compilation-targets" "^7.15.4" 25 | "@babel/helper-module-transforms" "^7.15.8" 26 | "@babel/helpers" "^7.15.4" 27 | "@babel/parser" "^7.15.8" 28 | "@babel/template" "^7.15.4" 29 | "@babel/traverse" "^7.15.4" 30 | "@babel/types" "^7.15.6" 31 | convert-source-map "^1.7.0" 32 | debug "^4.1.0" 33 | gensync "^1.0.0-beta.2" 34 | json5 "^2.1.2" 35 | semver "^6.3.0" 36 | source-map "^0.5.0" 37 | 38 | "@babel/generator@^7.15.4", "@babel/generator@^7.15.8", "@babel/generator@^7.7.2": 39 | version "7.15.8" 40 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.15.8.tgz#fa56be6b596952ceb231048cf84ee499a19c0cd1" 41 | integrity sha512-ECmAKstXbp1cvpTTZciZCgfOt6iN64lR0d+euv3UZisU5awfRawOvg07Utn/qBGuH4bRIEZKrA/4LzZyXhZr8g== 42 | dependencies: 43 | "@babel/types" "^7.15.6" 44 | jsesc "^2.5.1" 45 | source-map "^0.5.0" 46 | 47 | "@babel/helper-compilation-targets@^7.15.4": 48 | version "7.15.4" 49 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.15.4.tgz#cf6d94f30fbefc139123e27dd6b02f65aeedb7b9" 50 | integrity sha512-rMWPCirulnPSe4d+gwdWXLfAXTTBj8M3guAf5xFQJ0nvFY7tfNAFnWdqaHegHlgDZOCT4qvhF3BYlSJag8yhqQ== 51 | dependencies: 52 | "@babel/compat-data" "^7.15.0" 53 | "@babel/helper-validator-option" "^7.14.5" 54 | browserslist "^4.16.6" 55 | semver "^6.3.0" 56 | 57 | "@babel/helper-function-name@^7.15.4": 58 | version "7.15.4" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.15.4.tgz#845744dafc4381a4a5fb6afa6c3d36f98a787ebc" 60 | integrity sha512-Z91cOMM4DseLIGOnog+Z8OI6YseR9bua+HpvLAQ2XayUGU+neTtX+97caALaLdyu53I/fjhbeCnWnRH1O3jFOw== 61 | dependencies: 62 | "@babel/helper-get-function-arity" "^7.15.4" 63 | "@babel/template" "^7.15.4" 64 | "@babel/types" "^7.15.4" 65 | 66 | "@babel/helper-get-function-arity@^7.15.4": 67 | version "7.15.4" 68 | resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.15.4.tgz#098818934a137fce78b536a3e015864be1e2879b" 69 | integrity sha512-1/AlxSF92CmGZzHnC515hm4SirTxtpDnLEJ0UyEMgTMZN+6bxXKg04dKhiRx5Enel+SUA1G1t5Ed/yQia0efrA== 70 | dependencies: 71 | "@babel/types" "^7.15.4" 72 | 73 | "@babel/helper-hoist-variables@^7.15.4": 74 | version "7.15.4" 75 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.15.4.tgz#09993a3259c0e918f99d104261dfdfc033f178df" 76 | integrity sha512-VTy085egb3jUGVK9ycIxQiPbquesq0HUQ+tPO0uv5mPEBZipk+5FkRKiWq5apuyTE9FUrjENB0rCf8y+n+UuhA== 77 | dependencies: 78 | "@babel/types" "^7.15.4" 79 | 80 | "@babel/helper-member-expression-to-functions@^7.15.4": 81 | version "7.15.4" 82 | resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.15.4.tgz#bfd34dc9bba9824a4658b0317ec2fd571a51e6ef" 83 | integrity sha512-cokOMkxC/BTyNP1AlY25HuBWM32iCEsLPI4BHDpJCHHm1FU2E7dKWWIXJgQgSFiu4lp8q3bL1BIKwqkSUviqtA== 84 | dependencies: 85 | "@babel/types" "^7.15.4" 86 | 87 | "@babel/helper-module-imports@^7.15.4": 88 | version "7.15.4" 89 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.15.4.tgz#e18007d230632dea19b47853b984476e7b4e103f" 90 | integrity sha512-jeAHZbzUwdW/xHgHQ3QmWR4Jg6j15q4w/gCfwZvtqOxoo5DKtLHk8Bsf4c5RZRC7NmLEs+ohkdq8jFefuvIxAA== 91 | dependencies: 92 | "@babel/types" "^7.15.4" 93 | 94 | "@babel/helper-module-transforms@^7.15.8": 95 | version "7.15.8" 96 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.15.8.tgz#d8c0e75a87a52e374a8f25f855174786a09498b2" 97 | integrity sha512-DfAfA6PfpG8t4S6npwzLvTUpp0sS7JrcuaMiy1Y5645laRJIp/LiLGIBbQKaXSInK8tiGNI7FL7L8UvB8gdUZg== 98 | dependencies: 99 | "@babel/helper-module-imports" "^7.15.4" 100 | "@babel/helper-replace-supers" "^7.15.4" 101 | "@babel/helper-simple-access" "^7.15.4" 102 | "@babel/helper-split-export-declaration" "^7.15.4" 103 | "@babel/helper-validator-identifier" "^7.15.7" 104 | "@babel/template" "^7.15.4" 105 | "@babel/traverse" "^7.15.4" 106 | "@babel/types" "^7.15.6" 107 | 108 | "@babel/helper-optimise-call-expression@^7.15.4": 109 | version "7.15.4" 110 | resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.15.4.tgz#f310a5121a3b9cc52d9ab19122bd729822dee171" 111 | integrity sha512-E/z9rfbAOt1vDW1DR7k4SzhzotVV5+qMciWV6LaG1g4jeFrkDlJedjtV4h0i4Q/ITnUu+Pk08M7fczsB9GXBDw== 112 | dependencies: 113 | "@babel/types" "^7.15.4" 114 | 115 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.8.0": 116 | version "7.14.5" 117 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.14.5.tgz#5ac822ce97eec46741ab70a517971e443a70c5a9" 118 | integrity sha512-/37qQCE3K0vvZKwoK4XU/irIJQdIfCJuhU5eKnNxpFDsOkgFaUAwbv+RYw6eYgsC0E4hS7r5KqGULUogqui0fQ== 119 | 120 | "@babel/helper-replace-supers@^7.15.4": 121 | version "7.15.4" 122 | resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.15.4.tgz#52a8ab26ba918c7f6dee28628b07071ac7b7347a" 123 | integrity sha512-/ztT6khaXF37MS47fufrKvIsiQkx1LBRvSJNzRqmbyeZnTwU9qBxXYLaaT/6KaxfKhjs2Wy8kG8ZdsFUuWBjzw== 124 | dependencies: 125 | "@babel/helper-member-expression-to-functions" "^7.15.4" 126 | "@babel/helper-optimise-call-expression" "^7.15.4" 127 | "@babel/traverse" "^7.15.4" 128 | "@babel/types" "^7.15.4" 129 | 130 | "@babel/helper-simple-access@^7.15.4": 131 | version "7.15.4" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.15.4.tgz#ac368905abf1de8e9781434b635d8f8674bcc13b" 133 | integrity sha512-UzazrDoIVOZZcTeHHEPYrr1MvTR/K+wgLg6MY6e1CJyaRhbibftF6fR2KU2sFRtI/nERUZR9fBd6aKgBlIBaPg== 134 | dependencies: 135 | "@babel/types" "^7.15.4" 136 | 137 | "@babel/helper-split-export-declaration@^7.15.4": 138 | version "7.15.4" 139 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.15.4.tgz#aecab92dcdbef6a10aa3b62ab204b085f776e257" 140 | integrity sha512-HsFqhLDZ08DxCpBdEVtKmywj6PQbwnF6HHybur0MAnkAKnlS6uHkwnmRIkElB2Owpfb4xL4NwDmDLFubueDXsw== 141 | dependencies: 142 | "@babel/types" "^7.15.4" 143 | 144 | "@babel/helper-validator-identifier@^7.14.5", "@babel/helper-validator-identifier@^7.14.9", "@babel/helper-validator-identifier@^7.15.7": 145 | version "7.15.7" 146 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.15.7.tgz#220df993bfe904a4a6b02ab4f3385a5ebf6e2389" 147 | integrity sha512-K4JvCtQqad9OY2+yTU8w+E82ywk/fe+ELNlt1G8z3bVGlZfn/hOcQQsUhGhW/N+tb3fxK800wLtKOE/aM0m72w== 148 | 149 | "@babel/helper-validator-option@^7.14.5": 150 | version "7.14.5" 151 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.14.5.tgz#6e72a1fff18d5dfcb878e1e62f1a021c4b72d5a3" 152 | integrity sha512-OX8D5eeX4XwcroVW45NMvoYaIuFI+GQpA2a8Gi+X/U/cDUIRsV37qQfF905F0htTRCREQIB4KqPeaveRJUl3Ow== 153 | 154 | "@babel/helpers@^7.15.4": 155 | version "7.15.4" 156 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.15.4.tgz#5f40f02050a3027121a3cf48d497c05c555eaf43" 157 | integrity sha512-V45u6dqEJ3w2rlryYYXf6i9rQ5YMNu4FLS6ngs8ikblhu2VdR1AqAd6aJjBzmf2Qzh6KOLqKHxEN9+TFbAkAVQ== 158 | dependencies: 159 | "@babel/template" "^7.15.4" 160 | "@babel/traverse" "^7.15.4" 161 | "@babel/types" "^7.15.4" 162 | 163 | "@babel/highlight@^7.14.5": 164 | version "7.14.5" 165 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.14.5.tgz#6861a52f03966405001f6aa534a01a24d99e8cd9" 166 | integrity sha512-qf9u2WFWVV0MppaL877j2dBtQIDgmidgjGk5VIMw3OadXvYaXn66U1BFlH2t4+t3i+8PhedppRv+i40ABzd+gg== 167 | dependencies: 168 | "@babel/helper-validator-identifier" "^7.14.5" 169 | chalk "^2.0.0" 170 | js-tokens "^4.0.0" 171 | 172 | "@babel/parser@^7.1.0", "@babel/parser@^7.15.4", "@babel/parser@^7.15.8", "@babel/parser@^7.7.2": 173 | version "7.15.8" 174 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.15.8.tgz#7bacdcbe71bdc3ff936d510c15dcea7cf0b99016" 175 | integrity sha512-BRYa3wcQnjS/nqI8Ac94pYYpJfojHVvVXJ97+IDCImX4Jc8W8Xv1+47enbruk+q1etOpsQNwnfFcNGw+gtPGxA== 176 | 177 | "@babel/plugin-syntax-async-generators@^7.8.4": 178 | version "7.8.4" 179 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 180 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 181 | dependencies: 182 | "@babel/helper-plugin-utils" "^7.8.0" 183 | 184 | "@babel/plugin-syntax-bigint@^7.8.3": 185 | version "7.8.3" 186 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 187 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 188 | dependencies: 189 | "@babel/helper-plugin-utils" "^7.8.0" 190 | 191 | "@babel/plugin-syntax-class-properties@^7.8.3": 192 | version "7.12.13" 193 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 194 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 195 | dependencies: 196 | "@babel/helper-plugin-utils" "^7.12.13" 197 | 198 | "@babel/plugin-syntax-import-meta@^7.8.3": 199 | version "7.10.4" 200 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 201 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 202 | dependencies: 203 | "@babel/helper-plugin-utils" "^7.10.4" 204 | 205 | "@babel/plugin-syntax-json-strings@^7.8.3": 206 | version "7.8.3" 207 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 208 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 209 | dependencies: 210 | "@babel/helper-plugin-utils" "^7.8.0" 211 | 212 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 213 | version "7.10.4" 214 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 215 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 216 | dependencies: 217 | "@babel/helper-plugin-utils" "^7.10.4" 218 | 219 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 220 | version "7.8.3" 221 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 222 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 223 | dependencies: 224 | "@babel/helper-plugin-utils" "^7.8.0" 225 | 226 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 227 | version "7.10.4" 228 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 229 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 230 | dependencies: 231 | "@babel/helper-plugin-utils" "^7.10.4" 232 | 233 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 234 | version "7.8.3" 235 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 236 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 237 | dependencies: 238 | "@babel/helper-plugin-utils" "^7.8.0" 239 | 240 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 241 | version "7.8.3" 242 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 243 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 244 | dependencies: 245 | "@babel/helper-plugin-utils" "^7.8.0" 246 | 247 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 248 | version "7.8.3" 249 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 250 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 251 | dependencies: 252 | "@babel/helper-plugin-utils" "^7.8.0" 253 | 254 | "@babel/plugin-syntax-top-level-await@^7.8.3": 255 | version "7.14.5" 256 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 257 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 258 | dependencies: 259 | "@babel/helper-plugin-utils" "^7.14.5" 260 | 261 | "@babel/plugin-syntax-typescript@^7.7.2": 262 | version "7.14.5" 263 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.14.5.tgz#b82c6ce471b165b5ce420cf92914d6fb46225716" 264 | integrity sha512-u6OXzDaIXjEstBRRoBCQ/uKQKlbuaeE5in0RvWdA4pN6AhqxTIwUsnHPU1CFZA/amYObMsuWhYfRl3Ch90HD0Q== 265 | dependencies: 266 | "@babel/helper-plugin-utils" "^7.14.5" 267 | 268 | "@babel/template@^7.15.4", "@babel/template@^7.3.3": 269 | version "7.15.4" 270 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.15.4.tgz#51898d35dcf3faa670c4ee6afcfd517ee139f194" 271 | integrity sha512-UgBAfEa1oGuYgDIPM2G+aHa4Nlo9Lh6mGD2bDBGMTbYnc38vulXPuC1MGjYILIEmlwl6Rd+BPR9ee3gm20CBtg== 272 | dependencies: 273 | "@babel/code-frame" "^7.14.5" 274 | "@babel/parser" "^7.15.4" 275 | "@babel/types" "^7.15.4" 276 | 277 | "@babel/traverse@^7.1.0", "@babel/traverse@^7.15.4", "@babel/traverse@^7.7.2": 278 | version "7.15.4" 279 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.15.4.tgz#ff8510367a144bfbff552d9e18e28f3e2889c22d" 280 | integrity sha512-W6lQD8l4rUbQR/vYgSuCAE75ADyyQvOpFVsvPPdkhf6lATXAsQIG9YdtOcu8BB1dZ0LKu+Zo3c1wEcbKeuhdlA== 281 | dependencies: 282 | "@babel/code-frame" "^7.14.5" 283 | "@babel/generator" "^7.15.4" 284 | "@babel/helper-function-name" "^7.15.4" 285 | "@babel/helper-hoist-variables" "^7.15.4" 286 | "@babel/helper-split-export-declaration" "^7.15.4" 287 | "@babel/parser" "^7.15.4" 288 | "@babel/types" "^7.15.4" 289 | debug "^4.1.0" 290 | globals "^11.1.0" 291 | 292 | "@babel/types@^7.0.0", "@babel/types@^7.15.4", "@babel/types@^7.15.6", "@babel/types@^7.3.0", "@babel/types@^7.3.3": 293 | version "7.15.6" 294 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.15.6.tgz#99abdc48218b2881c058dd0a7ab05b99c9be758f" 295 | integrity sha512-BPU+7QhqNjmWyDO0/vitH/CuhpV8ZmK1wpKva8nuyNF5MJfuRNWMc+hc14+u9xT93kvykMdncrJT19h74uB1Ig== 296 | dependencies: 297 | "@babel/helper-validator-identifier" "^7.14.9" 298 | to-fast-properties "^2.0.0" 299 | 300 | "@bcoe/v8-coverage@^0.2.3": 301 | version "0.2.3" 302 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 303 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 304 | 305 | "@istanbuljs/load-nyc-config@^1.0.0": 306 | version "1.1.0" 307 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 308 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 309 | dependencies: 310 | camelcase "^5.3.1" 311 | find-up "^4.1.0" 312 | get-package-type "^0.1.0" 313 | js-yaml "^3.13.1" 314 | resolve-from "^5.0.0" 315 | 316 | "@istanbuljs/schema@^0.1.2": 317 | version "0.1.3" 318 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 319 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 320 | 321 | "@jest/console@^27.2.5": 322 | version "27.2.5" 323 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-27.2.5.tgz#bddbf8d41c191f17b52bf0c9e6c0d18605e35d6e" 324 | integrity sha512-smtlRF9vNKorRMCUtJ+yllIoiY8oFmfFG7xlzsAE76nKEwXNhjPOJIsc7Dv+AUitVt76t+KjIpUP9m98Crn2LQ== 325 | dependencies: 326 | "@jest/types" "^27.2.5" 327 | "@types/node" "*" 328 | chalk "^4.0.0" 329 | jest-message-util "^27.2.5" 330 | jest-util "^27.2.5" 331 | slash "^3.0.0" 332 | 333 | "@jest/core@^27.2.5": 334 | version "27.2.5" 335 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-27.2.5.tgz#854c314708cee0d892ac4f531b9129f00a21ee69" 336 | integrity sha512-VR7mQ+jykHN4WO3OvusRJMk4xCa2MFLipMS+43fpcRGaYrN1KwMATfVEXif7ccgFKYGy5D1TVXTNE4mGq/KMMA== 337 | dependencies: 338 | "@jest/console" "^27.2.5" 339 | "@jest/reporters" "^27.2.5" 340 | "@jest/test-result" "^27.2.5" 341 | "@jest/transform" "^27.2.5" 342 | "@jest/types" "^27.2.5" 343 | "@types/node" "*" 344 | ansi-escapes "^4.2.1" 345 | chalk "^4.0.0" 346 | emittery "^0.8.1" 347 | exit "^0.1.2" 348 | graceful-fs "^4.2.4" 349 | jest-changed-files "^27.2.5" 350 | jest-config "^27.2.5" 351 | jest-haste-map "^27.2.5" 352 | jest-message-util "^27.2.5" 353 | jest-regex-util "^27.0.6" 354 | jest-resolve "^27.2.5" 355 | jest-resolve-dependencies "^27.2.5" 356 | jest-runner "^27.2.5" 357 | jest-runtime "^27.2.5" 358 | jest-snapshot "^27.2.5" 359 | jest-util "^27.2.5" 360 | jest-validate "^27.2.5" 361 | jest-watcher "^27.2.5" 362 | micromatch "^4.0.4" 363 | rimraf "^3.0.0" 364 | slash "^3.0.0" 365 | strip-ansi "^6.0.0" 366 | 367 | "@jest/environment@^27.2.5": 368 | version "27.2.5" 369 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-27.2.5.tgz#b85517ccfcec55690c82c56f5a01a3b30c5e3c84" 370 | integrity sha512-XvUW3q6OUF+54SYFCgbbfCd/BKTwm5b2MGLoc2jINXQLKQDTCS2P2IrpPOtQ08WWZDGzbhAzVhOYta3J2arubg== 371 | dependencies: 372 | "@jest/fake-timers" "^27.2.5" 373 | "@jest/types" "^27.2.5" 374 | "@types/node" "*" 375 | jest-mock "^27.2.5" 376 | 377 | "@jest/fake-timers@^27.2.5": 378 | version "27.2.5" 379 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-27.2.5.tgz#0c7e5762d7bfe6e269e7b49279b097a52a42f0a0" 380 | integrity sha512-ZGUb6jg7BgwY+nmO0TW10bc7z7Hl2G/UTAvmxEyZ/GgNFoa31tY9/cgXmqcxnnZ7o5Xs7RAOz3G1SKIj8IVDlg== 381 | dependencies: 382 | "@jest/types" "^27.2.5" 383 | "@sinonjs/fake-timers" "^8.0.1" 384 | "@types/node" "*" 385 | jest-message-util "^27.2.5" 386 | jest-mock "^27.2.5" 387 | jest-util "^27.2.5" 388 | 389 | "@jest/globals@^27.2.5": 390 | version "27.2.5" 391 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-27.2.5.tgz#4115538f98ed6cee4051a90fdbd0854062902099" 392 | integrity sha512-naRI537GM+enFVJQs6DcwGYPn/0vgJNb06zGVbzXfDfe/epDPV73hP1vqO37PqSKDeOXM2KInr6ymYbL1HTP7g== 393 | dependencies: 394 | "@jest/environment" "^27.2.5" 395 | "@jest/types" "^27.2.5" 396 | expect "^27.2.5" 397 | 398 | "@jest/reporters@^27.2.5": 399 | version "27.2.5" 400 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-27.2.5.tgz#65198ed1f3f4449e3f656129764dc6c5bb27ebe3" 401 | integrity sha512-zYuR9fap3Q3mxQ454VWF8I6jYHErh368NwcKHWO2uy2fwByqBzRHkf9j2ekMDM7PaSTWcLBSZyd7NNxR1iHxzQ== 402 | dependencies: 403 | "@bcoe/v8-coverage" "^0.2.3" 404 | "@jest/console" "^27.2.5" 405 | "@jest/test-result" "^27.2.5" 406 | "@jest/transform" "^27.2.5" 407 | "@jest/types" "^27.2.5" 408 | "@types/node" "*" 409 | chalk "^4.0.0" 410 | collect-v8-coverage "^1.0.0" 411 | exit "^0.1.2" 412 | glob "^7.1.2" 413 | graceful-fs "^4.2.4" 414 | istanbul-lib-coverage "^3.0.0" 415 | istanbul-lib-instrument "^4.0.3" 416 | istanbul-lib-report "^3.0.0" 417 | istanbul-lib-source-maps "^4.0.0" 418 | istanbul-reports "^3.0.2" 419 | jest-haste-map "^27.2.5" 420 | jest-resolve "^27.2.5" 421 | jest-util "^27.2.5" 422 | jest-worker "^27.2.5" 423 | slash "^3.0.0" 424 | source-map "^0.6.0" 425 | string-length "^4.0.1" 426 | terminal-link "^2.0.0" 427 | v8-to-istanbul "^8.1.0" 428 | 429 | "@jest/source-map@^27.0.6": 430 | version "27.0.6" 431 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-27.0.6.tgz#be9e9b93565d49b0548b86e232092491fb60551f" 432 | integrity sha512-Fek4mi5KQrqmlY07T23JRi0e7Z9bXTOOD86V/uS0EIW4PClvPDqZOyFlLpNJheS6QI0FNX1CgmPjtJ4EA/2M+g== 433 | dependencies: 434 | callsites "^3.0.0" 435 | graceful-fs "^4.2.4" 436 | source-map "^0.6.0" 437 | 438 | "@jest/test-result@^27.2.5": 439 | version "27.2.5" 440 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-27.2.5.tgz#e9f73cf6cd5e2cc6eb3105339248dea211f9320e" 441 | integrity sha512-ub7j3BrddxZ0BdSnM5JCF6cRZJ/7j3wgdX0+Dtwhw2Po+HKsELCiXUTvh+mgS4/89mpnU1CPhZxe2mTvuLPJJg== 442 | dependencies: 443 | "@jest/console" "^27.2.5" 444 | "@jest/types" "^27.2.5" 445 | "@types/istanbul-lib-coverage" "^2.0.0" 446 | collect-v8-coverage "^1.0.0" 447 | 448 | "@jest/test-sequencer@^27.2.5": 449 | version "27.2.5" 450 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-27.2.5.tgz#ed5ae91c00e623fb719111d58e380395e16cefbb" 451 | integrity sha512-8j8fHZRfnjbbdMitMAGFKaBZ6YqvFRFJlMJzcy3v75edTOqc7RY65S9JpMY6wT260zAcL2sTQRga/P4PglCu3Q== 452 | dependencies: 453 | "@jest/test-result" "^27.2.5" 454 | graceful-fs "^4.2.4" 455 | jest-haste-map "^27.2.5" 456 | jest-runtime "^27.2.5" 457 | 458 | "@jest/transform@^27.2.5": 459 | version "27.2.5" 460 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-27.2.5.tgz#02b08862a56dbedddf0ba3c2eae41e049a250e29" 461 | integrity sha512-29lRtAHHYGALbZOx343v0zKmdOg4Sb0rsA1uSv0818bvwRhs3TyElOmTVXlrw0v1ZTqXJCAH/cmoDXimBhQOJQ== 462 | dependencies: 463 | "@babel/core" "^7.1.0" 464 | "@jest/types" "^27.2.5" 465 | babel-plugin-istanbul "^6.0.0" 466 | chalk "^4.0.0" 467 | convert-source-map "^1.4.0" 468 | fast-json-stable-stringify "^2.0.0" 469 | graceful-fs "^4.2.4" 470 | jest-haste-map "^27.2.5" 471 | jest-regex-util "^27.0.6" 472 | jest-util "^27.2.5" 473 | micromatch "^4.0.4" 474 | pirates "^4.0.1" 475 | slash "^3.0.0" 476 | source-map "^0.6.1" 477 | write-file-atomic "^3.0.0" 478 | 479 | "@jest/types@^27.2.5": 480 | version "27.2.5" 481 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-27.2.5.tgz#420765c052605e75686982d24b061b4cbba22132" 482 | integrity sha512-nmuM4VuDtCZcY+eTpw+0nvstwReMsjPoj7ZR80/BbixulhLaiX+fbv8oeLW8WZlJMcsGQsTmMKT/iTZu1Uy/lQ== 483 | dependencies: 484 | "@types/istanbul-lib-coverage" "^2.0.0" 485 | "@types/istanbul-reports" "^3.0.0" 486 | "@types/node" "*" 487 | "@types/yargs" "^16.0.0" 488 | chalk "^4.0.0" 489 | 490 | "@sinonjs/commons@^1.7.0": 491 | version "1.8.3" 492 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.8.3.tgz#3802ddd21a50a949b6721ddd72da36e67e7f1b2d" 493 | integrity sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ== 494 | dependencies: 495 | type-detect "4.0.8" 496 | 497 | "@sinonjs/fake-timers@^8.0.1": 498 | version "8.0.1" 499 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-8.0.1.tgz#1c1c9a91419f804e59ae8df316a07dd1c3a76b94" 500 | integrity sha512-AU7kwFxreVd6OAXcAFlKSmZquiRUU0FvYm44k1Y1QbK7Co4m0aqfGMhjykIeQp/H6rcl+nFmj0zfdUcGVs9Dew== 501 | dependencies: 502 | "@sinonjs/commons" "^1.7.0" 503 | 504 | "@tootallnate/once@1": 505 | version "1.1.2" 506 | resolved "https://registry.yarnpkg.com/@tootallnate/once/-/once-1.1.2.tgz#ccb91445360179a04e7fe6aff78c00ffc1eeaf82" 507 | integrity sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw== 508 | 509 | "@types/babel__core@^7.0.0", "@types/babel__core@^7.1.14": 510 | version "7.1.16" 511 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.16.tgz#bc12c74b7d65e82d29876b5d0baf5c625ac58702" 512 | integrity sha512-EAEHtisTMM+KaKwfWdC3oyllIqswlznXCIVCt7/oRNrh+DhgT4UEBNC/jlADNjvw7UnfbcdkGQcPVZ1xYiLcrQ== 513 | dependencies: 514 | "@babel/parser" "^7.1.0" 515 | "@babel/types" "^7.0.0" 516 | "@types/babel__generator" "*" 517 | "@types/babel__template" "*" 518 | "@types/babel__traverse" "*" 519 | 520 | "@types/babel__generator@*": 521 | version "7.6.3" 522 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.3.tgz#f456b4b2ce79137f768aa130d2423d2f0ccfaba5" 523 | integrity sha512-/GWCmzJWqV7diQW54smJZzWbSFf4QYtF71WCKhcx6Ru/tFyQIY2eiiITcCAeuPbNSvT9YCGkVMqqvSk2Z0mXiA== 524 | dependencies: 525 | "@babel/types" "^7.0.0" 526 | 527 | "@types/babel__template@*": 528 | version "7.4.1" 529 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969" 530 | integrity sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g== 531 | dependencies: 532 | "@babel/parser" "^7.1.0" 533 | "@babel/types" "^7.0.0" 534 | 535 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.4", "@types/babel__traverse@^7.0.6": 536 | version "7.14.2" 537 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.14.2.tgz#ffcd470bbb3f8bf30481678fb5502278ca833a43" 538 | integrity sha512-K2waXdXBi2302XUdcHcR1jCeU0LL4TD9HRs/gk0N2Xvrht+G/BfJa4QObBQZfhMdxiCpV3COl5Nfq4uKTeTnJA== 539 | dependencies: 540 | "@babel/types" "^7.3.0" 541 | 542 | "@types/graceful-fs@^4.1.2": 543 | version "4.1.5" 544 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.5.tgz#21ffba0d98da4350db64891f92a9e5db3cdb4e15" 545 | integrity sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw== 546 | dependencies: 547 | "@types/node" "*" 548 | 549 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 550 | version "2.0.3" 551 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.3.tgz#4ba8ddb720221f432e443bd5f9117fd22cfd4762" 552 | integrity sha512-sz7iLqvVUg1gIedBOvlkxPlc8/uVzyS5OwGz1cKjXzkl3FpL3al0crU8YGU1WoHkxn0Wxbw5tyi6hvzJKNzFsw== 553 | 554 | "@types/istanbul-lib-report@*": 555 | version "3.0.0" 556 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#c14c24f18ea8190c118ee7562b7ff99a36552686" 557 | integrity sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg== 558 | dependencies: 559 | "@types/istanbul-lib-coverage" "*" 560 | 561 | "@types/istanbul-reports@^3.0.0": 562 | version "3.0.1" 563 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz#9153fe98bba2bd565a63add9436d6f0d7f8468ff" 564 | integrity sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw== 565 | dependencies: 566 | "@types/istanbul-lib-report" "*" 567 | 568 | "@types/node@*": 569 | version "16.10.9" 570 | resolved "https://registry.yarnpkg.com/@types/node/-/node-16.10.9.tgz#8f1cdd517972f76a3b928298f4c0747cd6fef25a" 571 | integrity sha512-H9ReOt+yqIJPCutkTYjFjlyK6WEMQYT9hLZMlWtOjFQY2ItppsWZ6RJf8Aw+jz5qTYceuHvFgPIaKOHtLAEWBw== 572 | 573 | "@types/prettier@^2.1.5": 574 | version "2.4.1" 575 | resolved "https://registry.yarnpkg.com/@types/prettier/-/prettier-2.4.1.tgz#e1303048d5389563e130f5bdd89d37a99acb75eb" 576 | integrity sha512-Fo79ojj3vdEZOHg3wR9ksAMRz4P3S5fDB5e/YWZiFnyFQI1WY2Vftu9XoXVVtJfxB7Bpce/QTqWSSntkz2Znrw== 577 | 578 | "@types/stack-utils@^2.0.0": 579 | version "2.0.1" 580 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.1.tgz#20f18294f797f2209b5f65c8e3b5c8e8261d127c" 581 | integrity sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw== 582 | 583 | "@types/yargs-parser@*": 584 | version "20.2.1" 585 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-20.2.1.tgz#3b9ce2489919d9e4fea439b76916abc34b2df129" 586 | integrity sha512-7tFImggNeNBVMsn0vLrpn1H1uPrUBdnARPTpZoitY37ZrdJREzf7I16tMrlK3hen349gr1NYh8CmZQa7CTG6Aw== 587 | 588 | "@types/yargs@^16.0.0": 589 | version "16.0.4" 590 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-16.0.4.tgz#26aad98dd2c2a38e421086ea9ad42b9e51642977" 591 | integrity sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw== 592 | dependencies: 593 | "@types/yargs-parser" "*" 594 | 595 | abab@^2.0.3, abab@^2.0.5: 596 | version "2.0.5" 597 | resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.5.tgz#c0b678fb32d60fc1219c784d6a826fe385aeb79a" 598 | integrity sha512-9IK9EadsbHo6jLWIpxpR6pL0sazTXV6+SQv25ZB+F7Bj9mJNaOc4nCRabwd5M/JwmUa8idz6Eci6eKfJryPs6Q== 599 | 600 | acorn-globals@^6.0.0: 601 | version "6.0.0" 602 | resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-6.0.0.tgz#46cdd39f0f8ff08a876619b55f5ac8a6dc770b45" 603 | integrity sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg== 604 | dependencies: 605 | acorn "^7.1.1" 606 | acorn-walk "^7.1.1" 607 | 608 | acorn-walk@^7.1.1: 609 | version "7.2.0" 610 | resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-7.2.0.tgz#0de889a601203909b0fbe07b8938dc21d2e967bc" 611 | integrity sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA== 612 | 613 | acorn@^7.1.1: 614 | version "7.4.1" 615 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.4.1.tgz#feaed255973d2e77555b83dbc08851a6c63520fa" 616 | integrity sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A== 617 | 618 | acorn@^8.2.4: 619 | version "8.5.0" 620 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.5.0.tgz#4512ccb99b3698c752591e9bb4472e38ad43cee2" 621 | integrity sha512-yXbYeFy+jUuYd3/CDcg2NkIYE991XYX/bje7LmjJigUciaeO1JR4XxXgCIV1/Zc/dRuFEyw1L0pbA+qynJkW5Q== 622 | 623 | agent-base@6: 624 | version "6.0.2" 625 | resolved "https://registry.yarnpkg.com/agent-base/-/agent-base-6.0.2.tgz#49fff58577cfee3f37176feab4c22e00f86d7f77" 626 | integrity sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ== 627 | dependencies: 628 | debug "4" 629 | 630 | ansi-escapes@^4.2.1: 631 | version "4.3.2" 632 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 633 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 634 | dependencies: 635 | type-fest "^0.21.3" 636 | 637 | ansi-regex@^5.0.1: 638 | version "5.0.1" 639 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 640 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 641 | 642 | ansi-styles@^3.2.1: 643 | version "3.2.1" 644 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 645 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 646 | dependencies: 647 | color-convert "^1.9.0" 648 | 649 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 650 | version "4.3.0" 651 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 652 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 653 | dependencies: 654 | color-convert "^2.0.1" 655 | 656 | ansi-styles@^5.0.0: 657 | version "5.2.0" 658 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 659 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 660 | 661 | anymatch@^3.0.3, anymatch@~3.1.2: 662 | version "3.1.2" 663 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.2.tgz#c0557c096af32f106198f4f4e2a383537e378716" 664 | integrity sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg== 665 | dependencies: 666 | normalize-path "^3.0.0" 667 | picomatch "^2.0.4" 668 | 669 | argparse@^1.0.7: 670 | version "1.0.10" 671 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 672 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 673 | dependencies: 674 | sprintf-js "~1.0.2" 675 | 676 | asynckit@^0.4.0: 677 | version "0.4.0" 678 | resolved "https://registry.yarnpkg.com/asynckit/-/asynckit-0.4.0.tgz#c79ed97f7f34cb8f2ba1bc9790bcc366474b4b79" 679 | integrity sha1-x57Zf380y48robyXkLzDZkdLS3k= 680 | 681 | atob@^2.1.2: 682 | version "2.1.2" 683 | resolved "https://registry.yarnpkg.com/atob/-/atob-2.1.2.tgz#6d9517eb9e030d2436666651e86bd9f6f13533c9" 684 | integrity sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg== 685 | 686 | babel-jest@^27.2.5: 687 | version "27.2.5" 688 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-27.2.5.tgz#6bbbc1bb4200fe0bfd1b1fbcbe02fc62ebed16aa" 689 | integrity sha512-GC9pWCcitBhSuF7H3zl0mftoKizlswaF0E3qi+rPL417wKkCB0d+Sjjb0OfXvxj7gWiBf497ldgRMii68Xz+2g== 690 | dependencies: 691 | "@jest/transform" "^27.2.5" 692 | "@jest/types" "^27.2.5" 693 | "@types/babel__core" "^7.1.14" 694 | babel-plugin-istanbul "^6.0.0" 695 | babel-preset-jest "^27.2.0" 696 | chalk "^4.0.0" 697 | graceful-fs "^4.2.4" 698 | slash "^3.0.0" 699 | 700 | babel-plugin-istanbul@^6.0.0: 701 | version "6.0.0" 702 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.0.0.tgz#e159ccdc9af95e0b570c75b4573b7c34d671d765" 703 | integrity sha512-AF55rZXpe7trmEylbaE1Gv54wn6rwU03aptvRoVIGP8YykoSxqdVLV1TfwflBCE/QtHmqtP8SWlTENqbK8GCSQ== 704 | dependencies: 705 | "@babel/helper-plugin-utils" "^7.0.0" 706 | "@istanbuljs/load-nyc-config" "^1.0.0" 707 | "@istanbuljs/schema" "^0.1.2" 708 | istanbul-lib-instrument "^4.0.0" 709 | test-exclude "^6.0.0" 710 | 711 | babel-plugin-jest-hoist@^27.2.0: 712 | version "27.2.0" 713 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.2.0.tgz#79f37d43f7e5c4fdc4b2ca3e10cc6cf545626277" 714 | integrity sha512-TOux9khNKdi64mW+0OIhcmbAn75tTlzKhxmiNXevQaPbrBYK7YKjP1jl6NHTJ6XR5UgUrJbCnWlKVnJn29dfjw== 715 | dependencies: 716 | "@babel/template" "^7.3.3" 717 | "@babel/types" "^7.3.3" 718 | "@types/babel__core" "^7.0.0" 719 | "@types/babel__traverse" "^7.0.6" 720 | 721 | babel-preset-current-node-syntax@^1.0.0: 722 | version "1.0.1" 723 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 724 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 725 | dependencies: 726 | "@babel/plugin-syntax-async-generators" "^7.8.4" 727 | "@babel/plugin-syntax-bigint" "^7.8.3" 728 | "@babel/plugin-syntax-class-properties" "^7.8.3" 729 | "@babel/plugin-syntax-import-meta" "^7.8.3" 730 | "@babel/plugin-syntax-json-strings" "^7.8.3" 731 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 732 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 733 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 734 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 735 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 736 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 737 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 738 | 739 | babel-preset-jest@^27.2.0: 740 | version "27.2.0" 741 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-27.2.0.tgz#556bbbf340608fed5670ab0ea0c8ef2449fba885" 742 | integrity sha512-z7MgQ3peBwN5L5aCqBKnF6iqdlvZvFUQynEhu0J+X9nHLU72jO3iY331lcYrg+AssJ8q7xsv5/3AICzVmJ/wvg== 743 | dependencies: 744 | babel-plugin-jest-hoist "^27.2.0" 745 | babel-preset-current-node-syntax "^1.0.0" 746 | 747 | balanced-match@^1.0.0: 748 | version "1.0.2" 749 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 750 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 751 | 752 | binary-extensions@^2.0.0: 753 | version "2.2.0" 754 | resolved "https://registry.yarnpkg.com/binary-extensions/-/binary-extensions-2.2.0.tgz#75f502eeaf9ffde42fc98829645be4ea76bd9e2d" 755 | integrity sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA== 756 | 757 | brace-expansion@^1.1.7: 758 | version "1.1.11" 759 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 760 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 761 | dependencies: 762 | balanced-match "^1.0.0" 763 | concat-map "0.0.1" 764 | 765 | braces@^3.0.1, braces@~3.0.2: 766 | version "3.0.2" 767 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 768 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 769 | dependencies: 770 | fill-range "^7.0.1" 771 | 772 | browser-process-hrtime@^1.0.0: 773 | version "1.0.0" 774 | resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz#3c9b4b7d782c8121e56f10106d84c0d0ffc94626" 775 | integrity sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow== 776 | 777 | browserslist@^4.16.6: 778 | version "4.17.4" 779 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.17.4.tgz#72e2508af2a403aec0a49847ef31bd823c57ead4" 780 | integrity sha512-Zg7RpbZpIJRW3am9Lyckue7PLytvVxxhJj1CaJVlCWENsGEAOlnlt8X0ZxGRPp7Bt9o8tIRM5SEXy4BCPMJjLQ== 781 | dependencies: 782 | caniuse-lite "^1.0.30001265" 783 | electron-to-chromium "^1.3.867" 784 | escalade "^3.1.1" 785 | node-releases "^2.0.0" 786 | picocolors "^1.0.0" 787 | 788 | bser@2.1.1: 789 | version "2.1.1" 790 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 791 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 792 | dependencies: 793 | node-int64 "^0.4.0" 794 | 795 | buffer-from@^1.0.0: 796 | version "1.1.2" 797 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 798 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 799 | 800 | callsites@^3.0.0: 801 | version "3.1.0" 802 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 803 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 804 | 805 | camelcase@^5.3.1: 806 | version "5.3.1" 807 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 808 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 809 | 810 | camelcase@^6.2.0: 811 | version "6.2.0" 812 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.2.0.tgz#924af881c9d525ac9d87f40d964e5cea982a1809" 813 | integrity sha512-c7wVvbw3f37nuobQNtgsgG9POC9qMbNuMQmTCqZv23b6MIz0fcYpBiOlv9gEN/hdLdnZTDQhg6e9Dq5M1vKvfg== 814 | 815 | caniuse-lite@^1.0.30001265: 816 | version "1.0.30001267" 817 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001267.tgz#b1cf2937175afc0570e4615fc2d2f9069fa0ed30" 818 | integrity sha512-r1mjTzAuJ9W8cPBGbbus8E0SKcUP7gn03R14Wk8FlAlqhH9hroy9nLqmpuXlfKEw/oILW+FGz47ipXV2O7x8lg== 819 | 820 | chalk@^2.0.0: 821 | version "2.4.2" 822 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 823 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 824 | dependencies: 825 | ansi-styles "^3.2.1" 826 | escape-string-regexp "^1.0.5" 827 | supports-color "^5.3.0" 828 | 829 | chalk@^4.0.0, chalk@^4.1.0: 830 | version "4.1.2" 831 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 832 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 833 | dependencies: 834 | ansi-styles "^4.1.0" 835 | supports-color "^7.1.0" 836 | 837 | char-regex@^1.0.2: 838 | version "1.0.2" 839 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 840 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 841 | 842 | "chokidar@>=3.0.0 <4.0.0": 843 | version "3.5.2" 844 | resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-3.5.2.tgz#dba3976fcadb016f66fd365021d91600d01c1e75" 845 | integrity sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ== 846 | dependencies: 847 | anymatch "~3.1.2" 848 | braces "~3.0.2" 849 | glob-parent "~5.1.2" 850 | is-binary-path "~2.1.0" 851 | is-glob "~4.0.1" 852 | normalize-path "~3.0.0" 853 | readdirp "~3.6.0" 854 | optionalDependencies: 855 | fsevents "~2.3.2" 856 | 857 | ci-info@^3.1.1: 858 | version "3.2.0" 859 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.2.0.tgz#2876cb948a498797b5236f0095bc057d0dca38b6" 860 | integrity sha512-dVqRX7fLUm8J6FgHJ418XuIgDLZDkYcDFTeL6TA2gt5WlIZUQrrH6EZrNClwT/H0FateUsZkGIOPRrLbP+PR9A== 861 | 862 | cjs-module-lexer@^1.0.0: 863 | version "1.2.2" 864 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz#9f84ba3244a512f3a54e5277e8eef4c489864e40" 865 | integrity sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA== 866 | 867 | cliui@^7.0.2: 868 | version "7.0.4" 869 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-7.0.4.tgz#a0265ee655476fc807aea9df3df8df7783808b4f" 870 | integrity sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ== 871 | dependencies: 872 | string-width "^4.2.0" 873 | strip-ansi "^6.0.0" 874 | wrap-ansi "^7.0.0" 875 | 876 | co@^4.6.0: 877 | version "4.6.0" 878 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 879 | integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ= 880 | 881 | collect-v8-coverage@^1.0.0: 882 | version "1.0.1" 883 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz#cc2c8e94fc18bbdffe64d6534570c8a673b27f59" 884 | integrity sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg== 885 | 886 | color-convert@^1.9.0: 887 | version "1.9.3" 888 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 889 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 890 | dependencies: 891 | color-name "1.1.3" 892 | 893 | color-convert@^2.0.1: 894 | version "2.0.1" 895 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 896 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 897 | dependencies: 898 | color-name "~1.1.4" 899 | 900 | color-name@1.1.3: 901 | version "1.1.3" 902 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 903 | integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= 904 | 905 | color-name@~1.1.4: 906 | version "1.1.4" 907 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 908 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 909 | 910 | combined-stream@^1.0.8: 911 | version "1.0.8" 912 | resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.8.tgz#c3d45a8b34fd730631a110a8a2520682b31d5a7f" 913 | integrity sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg== 914 | dependencies: 915 | delayed-stream "~1.0.0" 916 | 917 | concat-map@0.0.1: 918 | version "0.0.1" 919 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 920 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 921 | 922 | convert-source-map@^1.4.0, convert-source-map@^1.6.0, convert-source-map@^1.7.0: 923 | version "1.8.0" 924 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.8.0.tgz#f3373c32d21b4d780dd8004514684fb791ca4369" 925 | integrity sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA== 926 | dependencies: 927 | safe-buffer "~5.1.1" 928 | 929 | cross-spawn@^7.0.3: 930 | version "7.0.3" 931 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 932 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 933 | dependencies: 934 | path-key "^3.1.0" 935 | shebang-command "^2.0.0" 936 | which "^2.0.1" 937 | 938 | css@^3.0.0: 939 | version "3.0.0" 940 | resolved "https://registry.yarnpkg.com/css/-/css-3.0.0.tgz#4447a4d58fdd03367c516ca9f64ae365cee4aa5d" 941 | integrity sha512-DG9pFfwOrzc+hawpmqX/dHYHJG+Bsdb0klhyi1sDneOgGOXy9wQIC8hzyVp1e4NRYDBdxcylvywPkkXCHAzTyQ== 942 | dependencies: 943 | inherits "^2.0.4" 944 | source-map "^0.6.1" 945 | source-map-resolve "^0.6.0" 946 | 947 | cssom@^0.4.4: 948 | version "0.4.4" 949 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.4.4.tgz#5a66cf93d2d0b661d80bf6a44fb65f5c2e4e0a10" 950 | integrity sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw== 951 | 952 | cssom@~0.3.6: 953 | version "0.3.8" 954 | resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a" 955 | integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg== 956 | 957 | cssstyle@^2.3.0: 958 | version "2.3.0" 959 | resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-2.3.0.tgz#ff665a0ddbdc31864b09647f34163443d90b0852" 960 | integrity sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A== 961 | dependencies: 962 | cssom "~0.3.6" 963 | 964 | data-urls@^2.0.0: 965 | version "2.0.0" 966 | resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-2.0.0.tgz#156485a72963a970f5d5821aaf642bef2bf2db9b" 967 | integrity sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ== 968 | dependencies: 969 | abab "^2.0.3" 970 | whatwg-mimetype "^2.3.0" 971 | whatwg-url "^8.0.0" 972 | 973 | debug@4, debug@^4.1.0, debug@^4.1.1: 974 | version "4.3.2" 975 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.2.tgz#f0a49c18ac8779e31d4a0c6029dfb76873c7428b" 976 | integrity sha512-mOp8wKcvj7XxC78zLgw/ZA+6TSgkoE2C/ienthhRD298T7UNwAg9diBpLRxC0mOezLl4B0xV7M0cCO6P/O0Xhw== 977 | dependencies: 978 | ms "2.1.2" 979 | 980 | decimal.js@^10.2.1: 981 | version "10.3.1" 982 | resolved "https://registry.yarnpkg.com/decimal.js/-/decimal.js-10.3.1.tgz#d8c3a444a9c6774ba60ca6ad7261c3a94fd5e783" 983 | integrity sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ== 984 | 985 | decode-uri-component@^0.2.0: 986 | version "0.2.2" 987 | resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.2.tgz#e69dbe25d37941171dd540e024c444cd5188e1e9" 988 | integrity sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ== 989 | 990 | dedent@^0.7.0: 991 | version "0.7.0" 992 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c" 993 | integrity sha1-JJXduvbrh0q7Dhvp3yLS5aVEMmw= 994 | 995 | deep-is@~0.1.3: 996 | version "0.1.4" 997 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 998 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 999 | 1000 | deepmerge@^4.2.2: 1001 | version "4.2.2" 1002 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.2.2.tgz#44d2ea3679b8f4d4ffba33f03d865fc1e7bf4955" 1003 | integrity sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg== 1004 | 1005 | delayed-stream@~1.0.0: 1006 | version "1.0.0" 1007 | resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619" 1008 | integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk= 1009 | 1010 | detect-newline@^3.0.0: 1011 | version "3.1.0" 1012 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1013 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1014 | 1015 | diff-sequences@^27.0.6: 1016 | version "27.0.6" 1017 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-27.0.6.tgz#3305cb2e55a033924054695cc66019fd7f8e5723" 1018 | integrity sha512-ag6wfpBFyNXZ0p8pcuIDS//D8H062ZQJ3fzYxjpmeKjnz8W4pekL3AI8VohmyZmsWW2PWaHgjsmqR6L13101VQ== 1019 | 1020 | domexception@^2.0.1: 1021 | version "2.0.1" 1022 | resolved "https://registry.yarnpkg.com/domexception/-/domexception-2.0.1.tgz#fb44aefba793e1574b0af6aed2801d057529f304" 1023 | integrity sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg== 1024 | dependencies: 1025 | webidl-conversions "^5.0.0" 1026 | 1027 | electron-to-chromium@^1.3.867: 1028 | version "1.3.868" 1029 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.868.tgz#ed835023b57ecf0ba63dfe7d50e16b53758ab1da" 1030 | integrity sha512-kZYCHqwJ1ctGrYDlOcWQH+/AftAm/KD4lEnLDNwS0kKwx1x6dU4zv+GuDjsPPOGn/2TjnKBaZjDyjXaoix0q/A== 1031 | 1032 | emittery@^0.8.1: 1033 | version "0.8.1" 1034 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.8.1.tgz#bb23cc86d03b30aa75a7f734819dee2e1ba70860" 1035 | integrity sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg== 1036 | 1037 | emoji-regex@^8.0.0: 1038 | version "8.0.0" 1039 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1040 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1041 | 1042 | escalade@^3.1.1: 1043 | version "3.1.1" 1044 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.1.tgz#d8cfdc7000965c5a0174b4a82eaa5c0552742e40" 1045 | integrity sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw== 1046 | 1047 | escape-string-regexp@^1.0.5: 1048 | version "1.0.5" 1049 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1050 | integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= 1051 | 1052 | escape-string-regexp@^2.0.0: 1053 | version "2.0.0" 1054 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1055 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1056 | 1057 | escodegen@^2.0.0: 1058 | version "2.0.0" 1059 | resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-2.0.0.tgz#5e32b12833e8aa8fa35e1bf0befa89380484c7dd" 1060 | integrity sha512-mmHKys/C8BFUGI+MAWNcSYoORYLMdPzjrknd2Vc+bUsjN5bXcr8EhrNB+UTqfL1y3I9c4fw2ihgtMPQLBRiQxw== 1061 | dependencies: 1062 | esprima "^4.0.1" 1063 | estraverse "^5.2.0" 1064 | esutils "^2.0.2" 1065 | optionator "^0.8.1" 1066 | optionalDependencies: 1067 | source-map "~0.6.1" 1068 | 1069 | esprima@^4.0.0, esprima@^4.0.1: 1070 | version "4.0.1" 1071 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1072 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1073 | 1074 | estraverse@^5.2.0: 1075 | version "5.2.0" 1076 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.2.0.tgz#307df42547e6cc7324d3cf03c155d5cdb8c53880" 1077 | integrity sha512-BxbNGGNm0RyRYvUdHpIwv9IWzeM9XClbOxwoATuFdOE7ZE6wHL+HQ5T8hoPM+zHvmKzzsEqhgy0GrQ5X13afiQ== 1078 | 1079 | esutils@^2.0.2: 1080 | version "2.0.3" 1081 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1082 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1083 | 1084 | execa@^5.0.0: 1085 | version "5.1.1" 1086 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1087 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1088 | dependencies: 1089 | cross-spawn "^7.0.3" 1090 | get-stream "^6.0.0" 1091 | human-signals "^2.1.0" 1092 | is-stream "^2.0.0" 1093 | merge-stream "^2.0.0" 1094 | npm-run-path "^4.0.1" 1095 | onetime "^5.1.2" 1096 | signal-exit "^3.0.3" 1097 | strip-final-newline "^2.0.0" 1098 | 1099 | exit@^0.1.2: 1100 | version "0.1.2" 1101 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1102 | integrity sha1-BjJjj42HfMghB9MKD/8aF8uhzQw= 1103 | 1104 | expect@^27.2.5: 1105 | version "27.2.5" 1106 | resolved "https://registry.yarnpkg.com/expect/-/expect-27.2.5.tgz#16154aaa60b4d9a5b0adacfea3e4d6178f4b93fd" 1107 | integrity sha512-ZrO0w7bo8BgGoP/bLz+HDCI+0Hfei9jUSZs5yI/Wyn9VkG9w8oJ7rHRgYj+MA7yqqFa0IwHA3flJzZtYugShJA== 1108 | dependencies: 1109 | "@jest/types" "^27.2.5" 1110 | ansi-styles "^5.0.0" 1111 | jest-get-type "^27.0.6" 1112 | jest-matcher-utils "^27.2.5" 1113 | jest-message-util "^27.2.5" 1114 | jest-regex-util "^27.0.6" 1115 | 1116 | fast-json-stable-stringify@^2.0.0: 1117 | version "2.1.0" 1118 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1119 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1120 | 1121 | fast-levenshtein@~2.0.6: 1122 | version "2.0.6" 1123 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1124 | integrity sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc= 1125 | 1126 | fb-watchman@^2.0.0: 1127 | version "2.0.1" 1128 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.1.tgz#fc84fb39d2709cf3ff6d743706157bb5708a8a85" 1129 | integrity sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg== 1130 | dependencies: 1131 | bser "2.1.1" 1132 | 1133 | fill-range@^7.0.1: 1134 | version "7.0.1" 1135 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1136 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1137 | dependencies: 1138 | to-regex-range "^5.0.1" 1139 | 1140 | find-up@^4.0.0, find-up@^4.1.0: 1141 | version "4.1.0" 1142 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1143 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1144 | dependencies: 1145 | locate-path "^5.0.0" 1146 | path-exists "^4.0.0" 1147 | 1148 | form-data@^3.0.0: 1149 | version "3.0.1" 1150 | resolved "https://registry.yarnpkg.com/form-data/-/form-data-3.0.1.tgz#ebd53791b78356a99af9a300d4282c4d5eb9755f" 1151 | integrity sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg== 1152 | dependencies: 1153 | asynckit "^0.4.0" 1154 | combined-stream "^1.0.8" 1155 | mime-types "^2.1.12" 1156 | 1157 | fs.realpath@^1.0.0: 1158 | version "1.0.0" 1159 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1160 | integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8= 1161 | 1162 | fsevents@^2.3.2, fsevents@~2.3.2: 1163 | version "2.3.2" 1164 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a" 1165 | integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA== 1166 | 1167 | function-bind@^1.1.1: 1168 | version "1.1.1" 1169 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d" 1170 | integrity sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A== 1171 | 1172 | gensync@^1.0.0-beta.2: 1173 | version "1.0.0-beta.2" 1174 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1175 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1176 | 1177 | get-caller-file@^2.0.5: 1178 | version "2.0.5" 1179 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1180 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1181 | 1182 | get-package-type@^0.1.0: 1183 | version "0.1.0" 1184 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1185 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1186 | 1187 | get-stream@^6.0.0: 1188 | version "6.0.1" 1189 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1190 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1191 | 1192 | glob-parent@~5.1.2: 1193 | version "5.1.2" 1194 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1195 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1196 | dependencies: 1197 | is-glob "^4.0.1" 1198 | 1199 | glob@^7.1.1, glob@^7.1.2, glob@^7.1.3, glob@^7.1.4, glob@^7.2.0: 1200 | version "7.2.0" 1201 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.0.tgz#d15535af7732e02e948f4c41628bd910293f6023" 1202 | integrity sha512-lmLf6gtyrPq8tTjSmrO94wBeQbFR3HbLHbuyD69wuyQkImp2hWqMGB47OX65FBkPffO641IP9jWa1z4ivqG26Q== 1203 | dependencies: 1204 | fs.realpath "^1.0.0" 1205 | inflight "^1.0.4" 1206 | inherits "2" 1207 | minimatch "^3.0.4" 1208 | once "^1.3.0" 1209 | path-is-absolute "^1.0.0" 1210 | 1211 | globals@^11.1.0: 1212 | version "11.12.0" 1213 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1214 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1215 | 1216 | graceful-fs@^4.2.4: 1217 | version "4.2.8" 1218 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.8.tgz#e412b8d33f5e006593cbd3cee6df9f2cebbe802a" 1219 | integrity sha512-qkIilPUYcNhJpd33n0GBXTB1MMPp14TxEsEs0pTrsSVucApsYzW5V+Q8Qxhik6KU3evy+qkAAowTByymK0avdg== 1220 | 1221 | has-flag@^3.0.0: 1222 | version "3.0.0" 1223 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1224 | integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= 1225 | 1226 | has-flag@^4.0.0: 1227 | version "4.0.0" 1228 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1229 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1230 | 1231 | has@^1.0.3: 1232 | version "1.0.3" 1233 | resolved "https://registry.yarnpkg.com/has/-/has-1.0.3.tgz#722d7cbfc1f6aa8241f16dd814e011e1f41e8796" 1234 | integrity sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw== 1235 | dependencies: 1236 | function-bind "^1.1.1" 1237 | 1238 | html-encoding-sniffer@^2.0.1: 1239 | version "2.0.1" 1240 | resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz#42a6dc4fd33f00281176e8b23759ca4e4fa185f3" 1241 | integrity sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ== 1242 | dependencies: 1243 | whatwg-encoding "^1.0.5" 1244 | 1245 | html-escaper@^2.0.0: 1246 | version "2.0.2" 1247 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1248 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1249 | 1250 | http-proxy-agent@^4.0.1: 1251 | version "4.0.1" 1252 | resolved "https://registry.yarnpkg.com/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz#8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a" 1253 | integrity sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg== 1254 | dependencies: 1255 | "@tootallnate/once" "1" 1256 | agent-base "6" 1257 | debug "4" 1258 | 1259 | https-proxy-agent@^5.0.0: 1260 | version "5.0.0" 1261 | resolved "https://registry.yarnpkg.com/https-proxy-agent/-/https-proxy-agent-5.0.0.tgz#e2a90542abb68a762e0a0850f6c9edadfd8506b2" 1262 | integrity sha512-EkYm5BcKUGiduxzSt3Eppko+PiNWNEpa4ySk9vTC6wDsQJW9rHSa+UhGNJoRYp7bz6Ht1eaRIa6QaJqO5rCFbA== 1263 | dependencies: 1264 | agent-base "6" 1265 | debug "4" 1266 | 1267 | human-signals@^2.1.0: 1268 | version "2.1.0" 1269 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1270 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1271 | 1272 | iconv-lite@0.4.24: 1273 | version "0.4.24" 1274 | resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b" 1275 | integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA== 1276 | dependencies: 1277 | safer-buffer ">= 2.1.2 < 3" 1278 | 1279 | import-local@^3.0.2: 1280 | version "3.0.3" 1281 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.0.3.tgz#4d51c2c495ca9393da259ec66b62e022920211e0" 1282 | integrity sha512-bE9iaUY3CXH8Cwfan/abDKAxe1KGT9kyGsBPqf6DMK/z0a2OzAsrukeYNgIH6cH5Xr452jb1TUL8rSfCLjZ9uA== 1283 | dependencies: 1284 | pkg-dir "^4.2.0" 1285 | resolve-cwd "^3.0.0" 1286 | 1287 | imurmurhash@^0.1.4: 1288 | version "0.1.4" 1289 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1290 | integrity sha1-khi5srkoojixPcT7a21XbyMUU+o= 1291 | 1292 | inflight@^1.0.4: 1293 | version "1.0.6" 1294 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1295 | integrity sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk= 1296 | dependencies: 1297 | once "^1.3.0" 1298 | wrappy "1" 1299 | 1300 | inherits@2, inherits@^2.0.4: 1301 | version "2.0.4" 1302 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1303 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1304 | 1305 | is-binary-path@~2.1.0: 1306 | version "2.1.0" 1307 | resolved "https://registry.yarnpkg.com/is-binary-path/-/is-binary-path-2.1.0.tgz#ea1f7f3b80f064236e83470f86c09c254fb45b09" 1308 | integrity sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw== 1309 | dependencies: 1310 | binary-extensions "^2.0.0" 1311 | 1312 | is-ci@^3.0.0: 1313 | version "3.0.0" 1314 | resolved "https://registry.yarnpkg.com/is-ci/-/is-ci-3.0.0.tgz#c7e7be3c9d8eef7d0fa144390bd1e4b88dc4c994" 1315 | integrity sha512-kDXyttuLeslKAHYL/K28F2YkM3x5jvFPEw3yXbRptXydjD9rpLEz+C5K5iutY9ZiUu6AP41JdvRQwF4Iqs4ZCQ== 1316 | dependencies: 1317 | ci-info "^3.1.1" 1318 | 1319 | is-core-module@^2.2.0: 1320 | version "2.7.0" 1321 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.7.0.tgz#3c0ef7d31b4acfc574f80c58409d568a836848e3" 1322 | integrity sha512-ByY+tjCciCr+9nLryBYcSD50EOGWt95c7tIsKTG1J2ixKKXPvF7Ej3AVd+UfDydAJom3biBGDBALaO79ktwgEQ== 1323 | dependencies: 1324 | has "^1.0.3" 1325 | 1326 | is-extglob@^2.1.1: 1327 | version "2.1.1" 1328 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1329 | integrity sha1-qIwCU1eR8C7TfHahueqXc8gz+MI= 1330 | 1331 | is-fullwidth-code-point@^3.0.0: 1332 | version "3.0.0" 1333 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1334 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1335 | 1336 | is-generator-fn@^2.0.0: 1337 | version "2.1.0" 1338 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1339 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1340 | 1341 | is-glob@^4.0.1, is-glob@~4.0.1: 1342 | version "4.0.3" 1343 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1344 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1345 | dependencies: 1346 | is-extglob "^2.1.1" 1347 | 1348 | is-number@^7.0.0: 1349 | version "7.0.0" 1350 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1351 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1352 | 1353 | is-potential-custom-element-name@^1.0.1: 1354 | version "1.0.1" 1355 | resolved "https://registry.yarnpkg.com/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz#171ed6f19e3ac554394edf78caa05784a45bebb5" 1356 | integrity sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ== 1357 | 1358 | is-stream@^2.0.0: 1359 | version "2.0.1" 1360 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1361 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1362 | 1363 | is-typedarray@^1.0.0: 1364 | version "1.0.0" 1365 | resolved "https://registry.yarnpkg.com/is-typedarray/-/is-typedarray-1.0.0.tgz#e479c80858df0c1b11ddda6940f96011fcda4a9a" 1366 | integrity sha1-5HnICFjfDBsR3dppQPlgEfzaSpo= 1367 | 1368 | isexe@^2.0.0: 1369 | version "2.0.0" 1370 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1371 | integrity sha1-6PvzdNxVb/iUehDcsFctYz8s+hA= 1372 | 1373 | istanbul-lib-coverage@^3.0.0: 1374 | version "3.0.2" 1375 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.0.2.tgz#36786d4d82aad2ea5911007e255e2da6b5f80d86" 1376 | integrity sha512-o5+eTUYzCJ11/+JhW5/FUCdfsdoYVdQ/8I/OveE2XsjehYn5DdeSnNQAbjYaO8gQ6hvGTN6GM6ddQqpTVG5j8g== 1377 | 1378 | istanbul-lib-instrument@^4.0.0, istanbul-lib-instrument@^4.0.3: 1379 | version "4.0.3" 1380 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-4.0.3.tgz#873c6fff897450118222774696a3f28902d77c1d" 1381 | integrity sha512-BXgQl9kf4WTCPCCpmFGoJkz/+uhvm7h7PFKUYxh7qarQd3ER33vHG//qaE8eN25l07YqZPpHXU9I09l/RD5aGQ== 1382 | dependencies: 1383 | "@babel/core" "^7.7.5" 1384 | "@istanbuljs/schema" "^0.1.2" 1385 | istanbul-lib-coverage "^3.0.0" 1386 | semver "^6.3.0" 1387 | 1388 | istanbul-lib-report@^3.0.0: 1389 | version "3.0.0" 1390 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz#7518fe52ea44de372f460a76b5ecda9ffb73d8a6" 1391 | integrity sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw== 1392 | dependencies: 1393 | istanbul-lib-coverage "^3.0.0" 1394 | make-dir "^3.0.0" 1395 | supports-color "^7.1.0" 1396 | 1397 | istanbul-lib-source-maps@^4.0.0: 1398 | version "4.0.1" 1399 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 1400 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 1401 | dependencies: 1402 | debug "^4.1.1" 1403 | istanbul-lib-coverage "^3.0.0" 1404 | source-map "^0.6.1" 1405 | 1406 | istanbul-reports@^3.0.2: 1407 | version "3.0.5" 1408 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.0.5.tgz#a2580107e71279ea6d661ddede929ffc6d693384" 1409 | integrity sha512-5+19PlhnGabNWB7kOFnuxT8H3T/iIyQzIbQMxXsURmmvKg86P2sbkrGOT77VnHw0Qr0gc2XzRaRfMZYYbSQCJQ== 1410 | dependencies: 1411 | html-escaper "^2.0.0" 1412 | istanbul-lib-report "^3.0.0" 1413 | 1414 | jest-changed-files@^27.2.5: 1415 | version "27.2.5" 1416 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-27.2.5.tgz#9dfd550d158260bcb6fa80aff491f5647f7daeca" 1417 | integrity sha512-jfnNJzF89csUKRPKJ4MwZ1SH27wTmX2xiAIHUHrsb/OYd9Jbo4/SXxJ17/nnx6RIifpthk3Y+LEeOk+/dDeGdw== 1418 | dependencies: 1419 | "@jest/types" "^27.2.5" 1420 | execa "^5.0.0" 1421 | throat "^6.0.1" 1422 | 1423 | jest-circus@^27.2.5: 1424 | version "27.2.5" 1425 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-27.2.5.tgz#573256a6fb6e447ac2fc7e0ade9375013309037f" 1426 | integrity sha512-eyL9IcrAxm3Saq3rmajFCwpaxaRMGJ1KJs+7hlTDinXpJmeR3P02bheM3CYohE7UfwOBmrFMJHjgo/WPcLTM+Q== 1427 | dependencies: 1428 | "@jest/environment" "^27.2.5" 1429 | "@jest/test-result" "^27.2.5" 1430 | "@jest/types" "^27.2.5" 1431 | "@types/node" "*" 1432 | chalk "^4.0.0" 1433 | co "^4.6.0" 1434 | dedent "^0.7.0" 1435 | expect "^27.2.5" 1436 | is-generator-fn "^2.0.0" 1437 | jest-each "^27.2.5" 1438 | jest-matcher-utils "^27.2.5" 1439 | jest-message-util "^27.2.5" 1440 | jest-runtime "^27.2.5" 1441 | jest-snapshot "^27.2.5" 1442 | jest-util "^27.2.5" 1443 | pretty-format "^27.2.5" 1444 | slash "^3.0.0" 1445 | stack-utils "^2.0.3" 1446 | throat "^6.0.1" 1447 | 1448 | jest-cli@^27.2.5: 1449 | version "27.2.5" 1450 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-27.2.5.tgz#88718c8f05f1c0f209152952ecd61afe4c3311bb" 1451 | integrity sha512-XzfcOXi5WQrXqFYsDxq5RDOKY4FNIgBgvgf3ZBz4e/j5/aWep5KnsAYH5OFPMdX/TP/LFsYQMRH7kzJUMh6JKg== 1452 | dependencies: 1453 | "@jest/core" "^27.2.5" 1454 | "@jest/test-result" "^27.2.5" 1455 | "@jest/types" "^27.2.5" 1456 | chalk "^4.0.0" 1457 | exit "^0.1.2" 1458 | graceful-fs "^4.2.4" 1459 | import-local "^3.0.2" 1460 | jest-config "^27.2.5" 1461 | jest-util "^27.2.5" 1462 | jest-validate "^27.2.5" 1463 | prompts "^2.0.1" 1464 | yargs "^16.2.0" 1465 | 1466 | jest-config@^27.2.5: 1467 | version "27.2.5" 1468 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-27.2.5.tgz#c2e4ec6ea2bf4ffd2cae3d927999fe6159cba207" 1469 | integrity sha512-QdENtn9b5rIIYGlbDNEcgY9LDL5kcokJnXrp7x8AGjHob/XFqw1Z6p+gjfna2sUulQsQ3ce2Fvntnv+7fKYDhQ== 1470 | dependencies: 1471 | "@babel/core" "^7.1.0" 1472 | "@jest/test-sequencer" "^27.2.5" 1473 | "@jest/types" "^27.2.5" 1474 | babel-jest "^27.2.5" 1475 | chalk "^4.0.0" 1476 | deepmerge "^4.2.2" 1477 | glob "^7.1.1" 1478 | graceful-fs "^4.2.4" 1479 | is-ci "^3.0.0" 1480 | jest-circus "^27.2.5" 1481 | jest-environment-jsdom "^27.2.5" 1482 | jest-environment-node "^27.2.5" 1483 | jest-get-type "^27.0.6" 1484 | jest-jasmine2 "^27.2.5" 1485 | jest-regex-util "^27.0.6" 1486 | jest-resolve "^27.2.5" 1487 | jest-runner "^27.2.5" 1488 | jest-util "^27.2.5" 1489 | jest-validate "^27.2.5" 1490 | micromatch "^4.0.4" 1491 | pretty-format "^27.2.5" 1492 | 1493 | jest-diff@^27.2.5: 1494 | version "27.2.5" 1495 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-27.2.5.tgz#908f7a6aca5653824516ad30e0a9fd9767e53623" 1496 | integrity sha512-7gfwwyYkeslOOVQY4tVq5TaQa92mWfC9COsVYMNVYyJTOYAqbIkoD3twi5A+h+tAPtAelRxkqY6/xu+jwTr0dA== 1497 | dependencies: 1498 | chalk "^4.0.0" 1499 | diff-sequences "^27.0.6" 1500 | jest-get-type "^27.0.6" 1501 | pretty-format "^27.2.5" 1502 | 1503 | jest-docblock@^27.0.6: 1504 | version "27.0.6" 1505 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-27.0.6.tgz#cc78266acf7fe693ca462cbbda0ea4e639e4e5f3" 1506 | integrity sha512-Fid6dPcjwepTFraz0YxIMCi7dejjJ/KL9FBjPYhBp4Sv1Y9PdhImlKZqYU555BlN4TQKaTc+F2Av1z+anVyGkA== 1507 | dependencies: 1508 | detect-newline "^3.0.0" 1509 | 1510 | jest-each@^27.2.5: 1511 | version "27.2.5" 1512 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-27.2.5.tgz#378118d516db730b92096a9607b8711165946353" 1513 | integrity sha512-HUPWIbJT0bXarRwKu/m7lYzqxR4GM5EhKOsu0z3t0SKtbFN6skQhpAUADM4qFShBXb9zoOuag5lcrR1x/WM+Ag== 1514 | dependencies: 1515 | "@jest/types" "^27.2.5" 1516 | chalk "^4.0.0" 1517 | jest-get-type "^27.0.6" 1518 | jest-util "^27.2.5" 1519 | pretty-format "^27.2.5" 1520 | 1521 | jest-environment-jsdom@^27.2.5: 1522 | version "27.2.5" 1523 | resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-27.2.5.tgz#21de3ad0e89441d961b592ba7561b16241279208" 1524 | integrity sha512-QtRpOh/RQKuXniaWcoFE2ElwP6tQcyxHu0hlk32880g0KczdonCs5P1sk5+weu/OVzh5V4Bt1rXuQthI01mBLg== 1525 | dependencies: 1526 | "@jest/environment" "^27.2.5" 1527 | "@jest/fake-timers" "^27.2.5" 1528 | "@jest/types" "^27.2.5" 1529 | "@types/node" "*" 1530 | jest-mock "^27.2.5" 1531 | jest-util "^27.2.5" 1532 | jsdom "^16.6.0" 1533 | 1534 | jest-environment-node@^27.2.5: 1535 | version "27.2.5" 1536 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-27.2.5.tgz#ffa1afb3604c640ec841f044d526c65912e02cef" 1537 | integrity sha512-0o1LT4grm7iwrS8fIoLtwJxb/hoa3GsH7pP10P02Jpj7Mi4BXy65u46m89vEM2WfD1uFJQ2+dfDiWZNA2e6bJg== 1538 | dependencies: 1539 | "@jest/environment" "^27.2.5" 1540 | "@jest/fake-timers" "^27.2.5" 1541 | "@jest/types" "^27.2.5" 1542 | "@types/node" "*" 1543 | jest-mock "^27.2.5" 1544 | jest-util "^27.2.5" 1545 | 1546 | jest-get-type@^27.0.6: 1547 | version "27.0.6" 1548 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-27.0.6.tgz#0eb5c7f755854279ce9b68a9f1a4122f69047cfe" 1549 | integrity sha512-XTkK5exIeUbbveehcSR8w0bhH+c0yloW/Wpl+9vZrjzztCPWrxhHwkIFpZzCt71oRBsgxmuUfxEqOYoZI2macg== 1550 | 1551 | jest-haste-map@^27.2.5: 1552 | version "27.2.5" 1553 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-27.2.5.tgz#0247b7299250643472bbcf5b4ad85c72d5178e2e" 1554 | integrity sha512-pzO+Gw2WLponaSi0ilpzYBE0kuVJstoXBX8YWyUebR8VaXuX4tzzn0Zp23c/WaETo7XYTGv2e8KdnpiskAFMhQ== 1555 | dependencies: 1556 | "@jest/types" "^27.2.5" 1557 | "@types/graceful-fs" "^4.1.2" 1558 | "@types/node" "*" 1559 | anymatch "^3.0.3" 1560 | fb-watchman "^2.0.0" 1561 | graceful-fs "^4.2.4" 1562 | jest-regex-util "^27.0.6" 1563 | jest-serializer "^27.0.6" 1564 | jest-util "^27.2.5" 1565 | jest-worker "^27.2.5" 1566 | micromatch "^4.0.4" 1567 | walker "^1.0.7" 1568 | optionalDependencies: 1569 | fsevents "^2.3.2" 1570 | 1571 | jest-jasmine2@^27.2.5: 1572 | version "27.2.5" 1573 | resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-27.2.5.tgz#baaf96c69913c52bce0100000cf0721027c0fd66" 1574 | integrity sha512-hdxY9Cm/CjLqu2tXeAoQHPgA4vcqlweVXYOg1+S9FeFdznB9Rti+eEBKDDkmOy9iqr4Xfbq95OkC4NFbXXPCAQ== 1575 | dependencies: 1576 | "@babel/traverse" "^7.1.0" 1577 | "@jest/environment" "^27.2.5" 1578 | "@jest/source-map" "^27.0.6" 1579 | "@jest/test-result" "^27.2.5" 1580 | "@jest/types" "^27.2.5" 1581 | "@types/node" "*" 1582 | chalk "^4.0.0" 1583 | co "^4.6.0" 1584 | expect "^27.2.5" 1585 | is-generator-fn "^2.0.0" 1586 | jest-each "^27.2.5" 1587 | jest-matcher-utils "^27.2.5" 1588 | jest-message-util "^27.2.5" 1589 | jest-runtime "^27.2.5" 1590 | jest-snapshot "^27.2.5" 1591 | jest-util "^27.2.5" 1592 | pretty-format "^27.2.5" 1593 | throat "^6.0.1" 1594 | 1595 | jest-leak-detector@^27.2.5: 1596 | version "27.2.5" 1597 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-27.2.5.tgz#e2edc3b37d38e8d9a527e10e456b403c3151b206" 1598 | integrity sha512-HYsi3GUR72bYhOGB5C5saF9sPdxGzSjX7soSQS+BqDRysc7sPeBwPbhbuT8DnOpijnKjgwWQ8JqvbmReYnt3aQ== 1599 | dependencies: 1600 | jest-get-type "^27.0.6" 1601 | pretty-format "^27.2.5" 1602 | 1603 | jest-matcher-utils@^27.2.5: 1604 | version "27.2.5" 1605 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-27.2.5.tgz#4684faaa8eb32bf15e6edaead6834031897e2980" 1606 | integrity sha512-qNR/kh6bz0Dyv3m68Ck2g1fLW5KlSOUNcFQh87VXHZwWc/gY6XwnKofx76Qytz3x5LDWT09/2+yXndTkaG4aWg== 1607 | dependencies: 1608 | chalk "^4.0.0" 1609 | jest-diff "^27.2.5" 1610 | jest-get-type "^27.0.6" 1611 | pretty-format "^27.2.5" 1612 | 1613 | jest-message-util@^27.2.5: 1614 | version "27.2.5" 1615 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-27.2.5.tgz#ed8b7b0965247bb875a49c1f9b9ab2d1d0820028" 1616 | integrity sha512-ggXSLoPfIYcbmZ8glgEJZ8b+e0Msw/iddRmgkoO7lDAr9SmI65IIfv7VnvTnV4FGnIIUIjzM+fHRHO5RBvyAbQ== 1617 | dependencies: 1618 | "@babel/code-frame" "^7.12.13" 1619 | "@jest/types" "^27.2.5" 1620 | "@types/stack-utils" "^2.0.0" 1621 | chalk "^4.0.0" 1622 | graceful-fs "^4.2.4" 1623 | micromatch "^4.0.4" 1624 | pretty-format "^27.2.5" 1625 | slash "^3.0.0" 1626 | stack-utils "^2.0.3" 1627 | 1628 | jest-mock@^27.2.5: 1629 | version "27.2.5" 1630 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-27.2.5.tgz#0ec38d5ff1e49c4802e7a4a8179e8d7a2fd84de0" 1631 | integrity sha512-HiMB3LqE9RzmeMzZARi2Bz3NoymxyP0gCid4y42ca1djffNtYFKgI220aC1VP1mUZ8rbpqZbHZOJ15093bZV/Q== 1632 | dependencies: 1633 | "@jest/types" "^27.2.5" 1634 | "@types/node" "*" 1635 | 1636 | jest-pnp-resolver@^1.2.2: 1637 | version "1.2.2" 1638 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz#b704ac0ae028a89108a4d040b3f919dfddc8e33c" 1639 | integrity sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w== 1640 | 1641 | jest-regex-util@^27.0.6: 1642 | version "27.0.6" 1643 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-27.0.6.tgz#02e112082935ae949ce5d13b2675db3d8c87d9c5" 1644 | integrity sha512-SUhPzBsGa1IKm8hx2F4NfTGGp+r7BXJ4CulsZ1k2kI+mGLG+lxGrs76veN2LF/aUdGosJBzKgXmNCw+BzFqBDQ== 1645 | 1646 | jest-resolve-dependencies@^27.2.5: 1647 | version "27.2.5" 1648 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-27.2.5.tgz#fcd8eca005b3d11ba32da443045c028164b83be1" 1649 | integrity sha512-BSjefped31bcvvCh++/pN9ueqqN1n0+p8/58yScuWfklLm2tbPbS9d251vJhAy0ZI2pL/0IaGhOTJrs9Y4FJlg== 1650 | dependencies: 1651 | "@jest/types" "^27.2.5" 1652 | jest-regex-util "^27.0.6" 1653 | jest-snapshot "^27.2.5" 1654 | 1655 | jest-resolve@^27.2.5: 1656 | version "27.2.5" 1657 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-27.2.5.tgz#04dadbfc1312a2541f5c199c5011945e9cfe5cef" 1658 | integrity sha512-q5irwS3oS73SKy3+FM/HL2T7WJftrk9BRzrXF92f7net5HMlS7lJMg/ZwxLB4YohKqjSsdksEw7n/jvMxV7EKg== 1659 | dependencies: 1660 | "@jest/types" "^27.2.5" 1661 | chalk "^4.0.0" 1662 | escalade "^3.1.1" 1663 | graceful-fs "^4.2.4" 1664 | jest-haste-map "^27.2.5" 1665 | jest-pnp-resolver "^1.2.2" 1666 | jest-util "^27.2.5" 1667 | jest-validate "^27.2.5" 1668 | resolve "^1.20.0" 1669 | slash "^3.0.0" 1670 | 1671 | jest-runner@^27.2.5: 1672 | version "27.2.5" 1673 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-27.2.5.tgz#3d9d0626f351480bb2cffcfbbfac240c0097ebd4" 1674 | integrity sha512-n41vw9RLg5TKAnEeJK9d6pGOsBOpwE89XBniK+AD1k26oIIy3V7ogM1scbDjSheji8MUPC9pNgCrZ/FHLVDNgg== 1675 | dependencies: 1676 | "@jest/console" "^27.2.5" 1677 | "@jest/environment" "^27.2.5" 1678 | "@jest/test-result" "^27.2.5" 1679 | "@jest/transform" "^27.2.5" 1680 | "@jest/types" "^27.2.5" 1681 | "@types/node" "*" 1682 | chalk "^4.0.0" 1683 | emittery "^0.8.1" 1684 | exit "^0.1.2" 1685 | graceful-fs "^4.2.4" 1686 | jest-docblock "^27.0.6" 1687 | jest-environment-jsdom "^27.2.5" 1688 | jest-environment-node "^27.2.5" 1689 | jest-haste-map "^27.2.5" 1690 | jest-leak-detector "^27.2.5" 1691 | jest-message-util "^27.2.5" 1692 | jest-resolve "^27.2.5" 1693 | jest-runtime "^27.2.5" 1694 | jest-util "^27.2.5" 1695 | jest-worker "^27.2.5" 1696 | source-map-support "^0.5.6" 1697 | throat "^6.0.1" 1698 | 1699 | jest-runtime@^27.2.5: 1700 | version "27.2.5" 1701 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-27.2.5.tgz#d144c3f6889b927aae1e695b63a41a3323b7016b" 1702 | integrity sha512-N0WRZ3QszKyZ3Dm27HTBbBuestsSd3Ud5ooVho47XZJ8aSKO/X1Ag8M1dNx9XzfGVRNdB/xCA3lz8MJwIzPLLA== 1703 | dependencies: 1704 | "@jest/console" "^27.2.5" 1705 | "@jest/environment" "^27.2.5" 1706 | "@jest/fake-timers" "^27.2.5" 1707 | "@jest/globals" "^27.2.5" 1708 | "@jest/source-map" "^27.0.6" 1709 | "@jest/test-result" "^27.2.5" 1710 | "@jest/transform" "^27.2.5" 1711 | "@jest/types" "^27.2.5" 1712 | "@types/yargs" "^16.0.0" 1713 | chalk "^4.0.0" 1714 | cjs-module-lexer "^1.0.0" 1715 | collect-v8-coverage "^1.0.0" 1716 | execa "^5.0.0" 1717 | exit "^0.1.2" 1718 | glob "^7.1.3" 1719 | graceful-fs "^4.2.4" 1720 | jest-haste-map "^27.2.5" 1721 | jest-message-util "^27.2.5" 1722 | jest-mock "^27.2.5" 1723 | jest-regex-util "^27.0.6" 1724 | jest-resolve "^27.2.5" 1725 | jest-snapshot "^27.2.5" 1726 | jest-util "^27.2.5" 1727 | jest-validate "^27.2.5" 1728 | slash "^3.0.0" 1729 | strip-bom "^4.0.0" 1730 | yargs "^16.2.0" 1731 | 1732 | jest-serializer@^27.0.6: 1733 | version "27.0.6" 1734 | resolved "https://registry.yarnpkg.com/jest-serializer/-/jest-serializer-27.0.6.tgz#93a6c74e0132b81a2d54623251c46c498bb5bec1" 1735 | integrity sha512-PtGdVK9EGC7dsaziskfqaAPib6wTViY3G8E5wz9tLVPhHyiDNTZn/xjZ4khAw+09QkoOVpn7vF5nPSN6dtBexA== 1736 | dependencies: 1737 | "@types/node" "*" 1738 | graceful-fs "^4.2.4" 1739 | 1740 | jest-snapshot@^27.2.5: 1741 | version "27.2.5" 1742 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-27.2.5.tgz#8a612fe31e2967f58ad364542198dff61f92ef32" 1743 | integrity sha512-2/Jkn+VN6Abwz0llBltZaiJMnL8b1j5Bp/gRIxe9YR3FCEh9qp0TXVV0dcpTGZ8AcJV1SZGQkczewkI9LP5yGw== 1744 | dependencies: 1745 | "@babel/core" "^7.7.2" 1746 | "@babel/generator" "^7.7.2" 1747 | "@babel/parser" "^7.7.2" 1748 | "@babel/plugin-syntax-typescript" "^7.7.2" 1749 | "@babel/traverse" "^7.7.2" 1750 | "@babel/types" "^7.0.0" 1751 | "@jest/transform" "^27.2.5" 1752 | "@jest/types" "^27.2.5" 1753 | "@types/babel__traverse" "^7.0.4" 1754 | "@types/prettier" "^2.1.5" 1755 | babel-preset-current-node-syntax "^1.0.0" 1756 | chalk "^4.0.0" 1757 | expect "^27.2.5" 1758 | graceful-fs "^4.2.4" 1759 | jest-diff "^27.2.5" 1760 | jest-get-type "^27.0.6" 1761 | jest-haste-map "^27.2.5" 1762 | jest-matcher-utils "^27.2.5" 1763 | jest-message-util "^27.2.5" 1764 | jest-resolve "^27.2.5" 1765 | jest-util "^27.2.5" 1766 | natural-compare "^1.4.0" 1767 | pretty-format "^27.2.5" 1768 | semver "^7.3.2" 1769 | 1770 | jest-util@^27.2.5: 1771 | version "27.2.5" 1772 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-27.2.5.tgz#88740c4024d223634a82ce7c2263e8bc6df3b3ba" 1773 | integrity sha512-QRhDC6XxISntMzFRd/OQ6TGsjbzA5ONO0tlAj2ElHs155x1aEr0rkYJBEysG6H/gZVH3oGFzCdAB/GA8leh8NQ== 1774 | dependencies: 1775 | "@jest/types" "^27.2.5" 1776 | "@types/node" "*" 1777 | chalk "^4.0.0" 1778 | graceful-fs "^4.2.4" 1779 | is-ci "^3.0.0" 1780 | picomatch "^2.2.3" 1781 | 1782 | jest-validate@^27.2.5: 1783 | version "27.2.5" 1784 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-27.2.5.tgz#2d59bf1627d180f395ba58f24599b0ee0efcfbdf" 1785 | integrity sha512-XgYtjS89nhVe+UfkbLgcm+GgXKWgL80t9nTcNeejyO3t0Sj/yHE8BtIJqjZu9NXQksYbGImoQRXmQ1gP+Guffw== 1786 | dependencies: 1787 | "@jest/types" "^27.2.5" 1788 | camelcase "^6.2.0" 1789 | chalk "^4.0.0" 1790 | jest-get-type "^27.0.6" 1791 | leven "^3.1.0" 1792 | pretty-format "^27.2.5" 1793 | 1794 | jest-watcher@^27.2.5: 1795 | version "27.2.5" 1796 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-27.2.5.tgz#41cd3e64dc5bea8a4327083d71ba7667be400567" 1797 | integrity sha512-umV4qGozg2Dn6DTTtqAh9puPw+DGLK9AQas7+mWjiK8t0fWMpxKg8ZXReZw7L4C88DqorsGUiDgwHNZ+jkVrkQ== 1798 | dependencies: 1799 | "@jest/test-result" "^27.2.5" 1800 | "@jest/types" "^27.2.5" 1801 | "@types/node" "*" 1802 | ansi-escapes "^4.2.1" 1803 | chalk "^4.0.0" 1804 | jest-util "^27.2.5" 1805 | string-length "^4.0.1" 1806 | 1807 | jest-worker@^27.2.5: 1808 | version "27.2.5" 1809 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-27.2.5.tgz#ed42865661959488aa020e8a325df010597c36d4" 1810 | integrity sha512-HTjEPZtcNKZ4LnhSp02NEH4vE+5OpJ0EsOWYvGQpHgUMLngydESAAMH5Wd/asPf29+XUDQZszxpLg1BkIIA2aw== 1811 | dependencies: 1812 | "@types/node" "*" 1813 | merge-stream "^2.0.0" 1814 | supports-color "^8.0.0" 1815 | 1816 | jest@^27.2.5: 1817 | version "27.2.5" 1818 | resolved "https://registry.yarnpkg.com/jest/-/jest-27.2.5.tgz#7d8a5c8781a160f693beeb7c68e46c16ef948148" 1819 | integrity sha512-vDMzXcpQN4Ycaqu+vO7LX8pZwNNoKMhc+gSp6q1D8S6ftRk8gNW8cni3YFxknP95jxzQo23Lul0BI2FrWgnwYQ== 1820 | dependencies: 1821 | "@jest/core" "^27.2.5" 1822 | import-local "^3.0.2" 1823 | jest-cli "^27.2.5" 1824 | 1825 | js-tokens@^4.0.0: 1826 | version "4.0.0" 1827 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1828 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1829 | 1830 | js-yaml@^3.13.1: 1831 | version "3.14.1" 1832 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1833 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1834 | dependencies: 1835 | argparse "^1.0.7" 1836 | esprima "^4.0.0" 1837 | 1838 | jsdom@^16.6.0: 1839 | version "16.7.0" 1840 | resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-16.7.0.tgz#918ae71965424b197c819f8183a754e18977b710" 1841 | integrity sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw== 1842 | dependencies: 1843 | abab "^2.0.5" 1844 | acorn "^8.2.4" 1845 | acorn-globals "^6.0.0" 1846 | cssom "^0.4.4" 1847 | cssstyle "^2.3.0" 1848 | data-urls "^2.0.0" 1849 | decimal.js "^10.2.1" 1850 | domexception "^2.0.1" 1851 | escodegen "^2.0.0" 1852 | form-data "^3.0.0" 1853 | html-encoding-sniffer "^2.0.1" 1854 | http-proxy-agent "^4.0.1" 1855 | https-proxy-agent "^5.0.0" 1856 | is-potential-custom-element-name "^1.0.1" 1857 | nwsapi "^2.2.0" 1858 | parse5 "6.0.1" 1859 | saxes "^5.0.1" 1860 | symbol-tree "^3.2.4" 1861 | tough-cookie "^4.0.0" 1862 | w3c-hr-time "^1.0.2" 1863 | w3c-xmlserializer "^2.0.0" 1864 | webidl-conversions "^6.1.0" 1865 | whatwg-encoding "^1.0.5" 1866 | whatwg-mimetype "^2.3.0" 1867 | whatwg-url "^8.5.0" 1868 | ws "^7.4.6" 1869 | xml-name-validator "^3.0.0" 1870 | 1871 | jsesc@^2.5.1: 1872 | version "2.5.2" 1873 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1874 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1875 | 1876 | json5@^2.1.2: 1877 | version "2.2.3" 1878 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1879 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1880 | 1881 | kleur@^3.0.3: 1882 | version "3.0.3" 1883 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 1884 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 1885 | 1886 | leven@^3.1.0: 1887 | version "3.1.0" 1888 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1889 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1890 | 1891 | levn@~0.3.0: 1892 | version "0.3.0" 1893 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.3.0.tgz#3b09924edf9f083c0490fdd4c0bc4421e04764ee" 1894 | integrity sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4= 1895 | dependencies: 1896 | prelude-ls "~1.1.2" 1897 | type-check "~0.3.2" 1898 | 1899 | locate-path@^5.0.0: 1900 | version "5.0.0" 1901 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1902 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1903 | dependencies: 1904 | p-locate "^4.1.0" 1905 | 1906 | lodash@^4.17.19, lodash@^4.7.0: 1907 | version "4.17.21" 1908 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1909 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1910 | 1911 | lru-cache@^6.0.0: 1912 | version "6.0.0" 1913 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1914 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1915 | dependencies: 1916 | yallist "^4.0.0" 1917 | 1918 | make-dir@^3.0.0: 1919 | version "3.1.0" 1920 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-3.1.0.tgz#415e967046b3a7f1d185277d84aa58203726a13f" 1921 | integrity sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw== 1922 | dependencies: 1923 | semver "^6.0.0" 1924 | 1925 | makeerror@1.0.x: 1926 | version "1.0.11" 1927 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.11.tgz#e01a5c9109f2af79660e4e8b9587790184f5a96c" 1928 | integrity sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw= 1929 | dependencies: 1930 | tmpl "1.0.x" 1931 | 1932 | merge-stream@^2.0.0: 1933 | version "2.0.0" 1934 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1935 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1936 | 1937 | micromatch@^4.0.4: 1938 | version "4.0.4" 1939 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.4.tgz#896d519dfe9db25fce94ceb7a500919bf881ebf9" 1940 | integrity sha512-pRmzw/XUcwXGpD9aI9q/0XOwLNygjETJ8y0ao0wdqprrzDa4YnxLcz7fQRZr8voh8V10kGhABbNcHVk5wHgWwg== 1941 | dependencies: 1942 | braces "^3.0.1" 1943 | picomatch "^2.2.3" 1944 | 1945 | mime-db@1.50.0: 1946 | version "1.50.0" 1947 | resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.50.0.tgz#abd4ac94e98d3c0e185016c67ab45d5fde40c11f" 1948 | integrity sha512-9tMZCDlYHqeERXEHO9f/hKfNXhre5dK2eE/krIvUjZbS2KPcqGDfNShIWS1uW9XOTKQKqK6qbeOci18rbfW77A== 1949 | 1950 | mime-types@^2.1.12: 1951 | version "2.1.33" 1952 | resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.33.tgz#1fa12a904472fafd068e48d9e8401f74d3f70edb" 1953 | integrity sha512-plLElXp7pRDd0bNZHw+nMd52vRYjLwQjygaNg7ddJ2uJtTlmnTCjWuPKxVu6//AdaRuME84SvLW91sIkBqGT0g== 1954 | dependencies: 1955 | mime-db "1.50.0" 1956 | 1957 | mimic-fn@^2.1.0: 1958 | version "2.1.0" 1959 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1960 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1961 | 1962 | minimatch@^3.0.4: 1963 | version "3.1.2" 1964 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1965 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1966 | dependencies: 1967 | brace-expansion "^1.1.7" 1968 | 1969 | ms@2.1.2: 1970 | version "2.1.2" 1971 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1972 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1973 | 1974 | natural-compare@^1.4.0: 1975 | version "1.4.0" 1976 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1977 | integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc= 1978 | 1979 | node-int64@^0.4.0: 1980 | version "0.4.0" 1981 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1982 | integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs= 1983 | 1984 | node-modules-regexp@^1.0.0: 1985 | version "1.0.0" 1986 | resolved "https://registry.yarnpkg.com/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz#8d9dbe28964a4ac5712e9131642107c71e90ec40" 1987 | integrity sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA= 1988 | 1989 | node-releases@^2.0.0: 1990 | version "2.0.0" 1991 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.0.tgz#67dc74903100a7deb044037b8a2e5f453bb05400" 1992 | integrity sha512-aA87l0flFYMzCHpTM3DERFSYxc6lv/BltdbRTOMZuxZ0cwZCD3mejE5n9vLhSJCN++/eOqr77G1IO5uXxlQYWA== 1993 | 1994 | normalize-path@^3.0.0, normalize-path@~3.0.0: 1995 | version "3.0.0" 1996 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1997 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1998 | 1999 | npm-run-path@^4.0.1: 2000 | version "4.0.1" 2001 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2002 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2003 | dependencies: 2004 | path-key "^3.0.0" 2005 | 2006 | nwsapi@^2.2.0: 2007 | version "2.2.0" 2008 | resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.2.0.tgz#204879a9e3d068ff2a55139c2c772780681a38b7" 2009 | integrity sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ== 2010 | 2011 | once@^1.3.0: 2012 | version "1.4.0" 2013 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2014 | integrity sha1-WDsap3WWHUsROsF9nFC6753Xa9E= 2015 | dependencies: 2016 | wrappy "1" 2017 | 2018 | onetime@^5.1.2: 2019 | version "5.1.2" 2020 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2021 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2022 | dependencies: 2023 | mimic-fn "^2.1.0" 2024 | 2025 | optionator@^0.8.1: 2026 | version "0.8.3" 2027 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.3.tgz#84fa1d036fe9d3c7e21d99884b601167ec8fb495" 2028 | integrity sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA== 2029 | dependencies: 2030 | deep-is "~0.1.3" 2031 | fast-levenshtein "~2.0.6" 2032 | levn "~0.3.0" 2033 | prelude-ls "~1.1.2" 2034 | type-check "~0.3.2" 2035 | word-wrap "~1.2.3" 2036 | 2037 | p-limit@^2.2.0: 2038 | version "2.3.0" 2039 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2040 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2041 | dependencies: 2042 | p-try "^2.0.0" 2043 | 2044 | p-locate@^4.1.0: 2045 | version "4.1.0" 2046 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2047 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2048 | dependencies: 2049 | p-limit "^2.2.0" 2050 | 2051 | p-try@^2.0.0: 2052 | version "2.2.0" 2053 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2054 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2055 | 2056 | parse5@6.0.1: 2057 | version "6.0.1" 2058 | resolved "https://registry.yarnpkg.com/parse5/-/parse5-6.0.1.tgz#e1a1c085c569b3dc08321184f19a39cc27f7c30b" 2059 | integrity sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw== 2060 | 2061 | path-exists@^4.0.0: 2062 | version "4.0.0" 2063 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2064 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2065 | 2066 | path-is-absolute@^1.0.0: 2067 | version "1.0.1" 2068 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2069 | integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18= 2070 | 2071 | path-key@^3.0.0, path-key@^3.1.0: 2072 | version "3.1.1" 2073 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2074 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2075 | 2076 | path-parse@^1.0.6: 2077 | version "1.0.7" 2078 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2079 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2080 | 2081 | picocolors@^1.0.0: 2082 | version "1.0.0" 2083 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 2084 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 2085 | 2086 | picomatch@^2.0.4, picomatch@^2.2.1, picomatch@^2.2.3: 2087 | version "2.3.0" 2088 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.0.tgz#f1f061de8f6a4bf022892e2d128234fb98302972" 2089 | integrity sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw== 2090 | 2091 | pirates@^4.0.1: 2092 | version "4.0.1" 2093 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.1.tgz#643a92caf894566f91b2b986d2c66950a8e2fb87" 2094 | integrity sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA== 2095 | dependencies: 2096 | node-modules-regexp "^1.0.0" 2097 | 2098 | pkg-dir@^4.2.0: 2099 | version "4.2.0" 2100 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2101 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2102 | dependencies: 2103 | find-up "^4.0.0" 2104 | 2105 | prelude-ls@~1.1.2: 2106 | version "1.1.2" 2107 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54" 2108 | integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ= 2109 | 2110 | pretty-format@^27.2.5: 2111 | version "27.2.5" 2112 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-27.2.5.tgz#7cfe2a8e8f01a5b5b29296a0b70f4140df0830c5" 2113 | integrity sha512-+nYn2z9GgicO9JiqmY25Xtq8SYfZ/5VCpEU3pppHHNAhd1y+ZXxmNPd1evmNcAd6Hz4iBV2kf0UpGth5A/VJ7g== 2114 | dependencies: 2115 | "@jest/types" "^27.2.5" 2116 | ansi-regex "^5.0.1" 2117 | ansi-styles "^5.0.0" 2118 | react-is "^17.0.1" 2119 | 2120 | prompts@^2.0.1: 2121 | version "2.4.2" 2122 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 2123 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2124 | dependencies: 2125 | kleur "^3.0.3" 2126 | sisteransi "^1.0.5" 2127 | 2128 | psl@^1.1.33: 2129 | version "1.8.0" 2130 | resolved "https://registry.yarnpkg.com/psl/-/psl-1.8.0.tgz#9326f8bcfb013adcc005fdff056acce020e51c24" 2131 | integrity sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ== 2132 | 2133 | punycode@^2.1.1: 2134 | version "2.1.1" 2135 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec" 2136 | integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A== 2137 | 2138 | querystringify@^2.1.1: 2139 | version "2.2.0" 2140 | resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" 2141 | integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== 2142 | 2143 | react-is@^17.0.1: 2144 | version "17.0.2" 2145 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" 2146 | integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== 2147 | 2148 | readdirp@~3.6.0: 2149 | version "3.6.0" 2150 | resolved "https://registry.yarnpkg.com/readdirp/-/readdirp-3.6.0.tgz#74a370bd857116e245b29cc97340cd431a02a6c7" 2151 | integrity sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA== 2152 | dependencies: 2153 | picomatch "^2.2.1" 2154 | 2155 | require-directory@^2.1.1: 2156 | version "2.1.1" 2157 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2158 | integrity sha1-jGStX9MNqxyXbiNE/+f3kqam30I= 2159 | 2160 | requires-port@^1.0.0: 2161 | version "1.0.0" 2162 | resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" 2163 | integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== 2164 | 2165 | resolve-cwd@^3.0.0: 2166 | version "3.0.0" 2167 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2168 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2169 | dependencies: 2170 | resolve-from "^5.0.0" 2171 | 2172 | resolve-from@^5.0.0: 2173 | version "5.0.0" 2174 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2175 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2176 | 2177 | resolve@^1.20.0: 2178 | version "1.20.0" 2179 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.20.0.tgz#629a013fb3f70755d6f0b7935cc1c2c5378b1975" 2180 | integrity sha512-wENBPt4ySzg4ybFQW2TT1zMQucPK95HSh/nq2CFTZVOGut2+pQvSsgtda4d26YrYcr067wjbmzOG8byDPBX63A== 2181 | dependencies: 2182 | is-core-module "^2.2.0" 2183 | path-parse "^1.0.6" 2184 | 2185 | rimraf@^3.0.0: 2186 | version "3.0.2" 2187 | resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-3.0.2.tgz#f1a5402ba6220ad52cc1282bac1ae3aa49fd061a" 2188 | integrity sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA== 2189 | dependencies: 2190 | glob "^7.1.3" 2191 | 2192 | safe-buffer@~5.1.1: 2193 | version "5.1.2" 2194 | resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" 2195 | integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== 2196 | 2197 | "safer-buffer@>= 2.1.2 < 3": 2198 | version "2.1.2" 2199 | resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" 2200 | integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== 2201 | 2202 | sass-true@^6.0.1: 2203 | version "6.0.1" 2204 | resolved "https://registry.yarnpkg.com/sass-true/-/sass-true-6.0.1.tgz#c159fa27df2f9ee22bb624a851144a8af7dc8a32" 2205 | integrity sha512-Ow72fStIgw+qRRUc0r77emeWry06a3e1hXtadPEzDL/GFiEjtQKZel5fr+gu85zC8JYmLkZofMn6x9b/sq+wfg== 2206 | dependencies: 2207 | chalk "^4.1.0" 2208 | css "^3.0.0" 2209 | lodash "^4.17.19" 2210 | 2211 | sass@^1.42.1: 2212 | version "1.43.2" 2213 | resolved "https://registry.yarnpkg.com/sass/-/sass-1.43.2.tgz#c02501520c624ad6622529a8b3724eb08da82d65" 2214 | integrity sha512-DncYhjl3wBaPMMJR0kIUaH3sF536rVrOcqqVGmTZHQRRzj7LQlyGV7Mb8aCKFyILMr5VsPHwRYtyKpnKYlmQSQ== 2215 | dependencies: 2216 | chokidar ">=3.0.0 <4.0.0" 2217 | 2218 | saxes@^5.0.1: 2219 | version "5.0.1" 2220 | resolved "https://registry.yarnpkg.com/saxes/-/saxes-5.0.1.tgz#eebab953fa3b7608dbe94e5dadb15c888fa6696d" 2221 | integrity sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw== 2222 | dependencies: 2223 | xmlchars "^2.2.0" 2224 | 2225 | semver@^6.0.0, semver@^6.3.0: 2226 | version "6.3.1" 2227 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 2228 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 2229 | 2230 | semver@^7.3.2: 2231 | version "7.5.4" 2232 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" 2233 | integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== 2234 | dependencies: 2235 | lru-cache "^6.0.0" 2236 | 2237 | shebang-command@^2.0.0: 2238 | version "2.0.0" 2239 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2240 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2241 | dependencies: 2242 | shebang-regex "^3.0.0" 2243 | 2244 | shebang-regex@^3.0.0: 2245 | version "3.0.0" 2246 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2247 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2248 | 2249 | signal-exit@^3.0.2, signal-exit@^3.0.3: 2250 | version "3.0.5" 2251 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.5.tgz#9e3e8cc0c75a99472b44321033a7702e7738252f" 2252 | integrity sha512-KWcOiKeQj6ZyXx7zq4YxSMgHRlod4czeBQZrPb8OKcohcqAXShm7E20kEMle9WBt26hFcAf0qLOcp5zmY7kOqQ== 2253 | 2254 | sisteransi@^1.0.5: 2255 | version "1.0.5" 2256 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 2257 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 2258 | 2259 | slash@^3.0.0: 2260 | version "3.0.0" 2261 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2262 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2263 | 2264 | source-map-resolve@^0.6.0: 2265 | version "0.6.0" 2266 | resolved "https://registry.yarnpkg.com/source-map-resolve/-/source-map-resolve-0.6.0.tgz#3d9df87e236b53f16d01e58150fc7711138e5ed2" 2267 | integrity sha512-KXBr9d/fO/bWo97NXsPIAW1bFSBOuCnjbNTBMO7N59hsv5i9yzRDfcYwwt0l04+VqnKC+EwzvJZIP/qkuMgR/w== 2268 | dependencies: 2269 | atob "^2.1.2" 2270 | decode-uri-component "^0.2.0" 2271 | 2272 | source-map-support@^0.5.6: 2273 | version "0.5.20" 2274 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9" 2275 | integrity sha512-n1lZZ8Ve4ksRqizaBQgxXDgKwttHDhyfQjA6YZZn8+AroHbsIz+JjwxQDxbp+7y5OYCI8t1Yk7etjD9CRd2hIw== 2276 | dependencies: 2277 | buffer-from "^1.0.0" 2278 | source-map "^0.6.0" 2279 | 2280 | source-map@^0.5.0: 2281 | version "0.5.7" 2282 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" 2283 | integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= 2284 | 2285 | source-map@^0.6.0, source-map@^0.6.1, source-map@~0.6.1: 2286 | version "0.6.1" 2287 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2288 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2289 | 2290 | source-map@^0.7.3: 2291 | version "0.7.3" 2292 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.7.3.tgz#5302f8169031735226544092e64981f751750383" 2293 | integrity sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ== 2294 | 2295 | sprintf-js@~1.0.2: 2296 | version "1.0.3" 2297 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2298 | integrity sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw= 2299 | 2300 | stack-utils@^2.0.3: 2301 | version "2.0.5" 2302 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.5.tgz#d25265fca995154659dbbfba3b49254778d2fdd5" 2303 | integrity sha512-xrQcmYhOsn/1kX+Vraq+7j4oE2j/6BFscZ0etmYg81xuM8Gq0022Pxb8+IqgOFUIaxHs0KaSb7T1+OegiNrNFA== 2304 | dependencies: 2305 | escape-string-regexp "^2.0.0" 2306 | 2307 | string-length@^4.0.1: 2308 | version "4.0.2" 2309 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 2310 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 2311 | dependencies: 2312 | char-regex "^1.0.2" 2313 | strip-ansi "^6.0.0" 2314 | 2315 | string-width@^4.1.0, string-width@^4.2.0: 2316 | version "4.2.3" 2317 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2318 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2319 | dependencies: 2320 | emoji-regex "^8.0.0" 2321 | is-fullwidth-code-point "^3.0.0" 2322 | strip-ansi "^6.0.1" 2323 | 2324 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2325 | version "6.0.1" 2326 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2327 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2328 | dependencies: 2329 | ansi-regex "^5.0.1" 2330 | 2331 | strip-bom@^4.0.0: 2332 | version "4.0.0" 2333 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 2334 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 2335 | 2336 | strip-final-newline@^2.0.0: 2337 | version "2.0.0" 2338 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2339 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2340 | 2341 | supports-color@^5.3.0: 2342 | version "5.5.0" 2343 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2344 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2345 | dependencies: 2346 | has-flag "^3.0.0" 2347 | 2348 | supports-color@^7.0.0, supports-color@^7.1.0: 2349 | version "7.2.0" 2350 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2351 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2352 | dependencies: 2353 | has-flag "^4.0.0" 2354 | 2355 | supports-color@^8.0.0: 2356 | version "8.1.1" 2357 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2358 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2359 | dependencies: 2360 | has-flag "^4.0.0" 2361 | 2362 | supports-hyperlinks@^2.0.0: 2363 | version "2.2.0" 2364 | resolved "https://registry.yarnpkg.com/supports-hyperlinks/-/supports-hyperlinks-2.2.0.tgz#4f77b42488765891774b70c79babd87f9bd594bb" 2365 | integrity sha512-6sXEzV5+I5j8Bmq9/vUphGRM/RJNT9SCURJLjwfOg51heRtguGWDzcaBlgAzKhQa0EVNpPEKzQuBwZ8S8WaCeQ== 2366 | dependencies: 2367 | has-flag "^4.0.0" 2368 | supports-color "^7.0.0" 2369 | 2370 | symbol-tree@^3.2.4: 2371 | version "3.2.4" 2372 | resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2" 2373 | integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw== 2374 | 2375 | terminal-link@^2.0.0: 2376 | version "2.1.1" 2377 | resolved "https://registry.yarnpkg.com/terminal-link/-/terminal-link-2.1.1.tgz#14a64a27ab3c0df933ea546fba55f2d078edc994" 2378 | integrity sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ== 2379 | dependencies: 2380 | ansi-escapes "^4.2.1" 2381 | supports-hyperlinks "^2.0.0" 2382 | 2383 | test-exclude@^6.0.0: 2384 | version "6.0.0" 2385 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 2386 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 2387 | dependencies: 2388 | "@istanbuljs/schema" "^0.1.2" 2389 | glob "^7.1.4" 2390 | minimatch "^3.0.4" 2391 | 2392 | throat@^6.0.1: 2393 | version "6.0.1" 2394 | resolved "https://registry.yarnpkg.com/throat/-/throat-6.0.1.tgz#d514fedad95740c12c2d7fc70ea863eb51ade375" 2395 | integrity sha512-8hmiGIJMDlwjg7dlJ4yKGLK8EsYqKgPWbG3b4wjJddKNwc7N7Dpn08Df4szr/sZdMVeOstrdYSsqzX6BYbcB+w== 2396 | 2397 | tmpl@1.0.x: 2398 | version "1.0.5" 2399 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 2400 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 2401 | 2402 | to-fast-properties@^2.0.0: 2403 | version "2.0.0" 2404 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2405 | integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= 2406 | 2407 | to-regex-range@^5.0.1: 2408 | version "5.0.1" 2409 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2410 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2411 | dependencies: 2412 | is-number "^7.0.0" 2413 | 2414 | tough-cookie@^4.0.0: 2415 | version "4.1.3" 2416 | resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" 2417 | integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== 2418 | dependencies: 2419 | psl "^1.1.33" 2420 | punycode "^2.1.1" 2421 | universalify "^0.2.0" 2422 | url-parse "^1.5.3" 2423 | 2424 | tr46@^2.1.0: 2425 | version "2.1.0" 2426 | resolved "https://registry.yarnpkg.com/tr46/-/tr46-2.1.0.tgz#fa87aa81ca5d5941da8cbf1f9b749dc969a4e240" 2427 | integrity sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw== 2428 | dependencies: 2429 | punycode "^2.1.1" 2430 | 2431 | type-check@~0.3.2: 2432 | version "0.3.2" 2433 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.3.2.tgz#5884cab512cf1d355e3fb784f30804b2b520db72" 2434 | integrity sha1-WITKtRLPHTVeP7eE8wgEsrUg23I= 2435 | dependencies: 2436 | prelude-ls "~1.1.2" 2437 | 2438 | type-detect@4.0.8: 2439 | version "4.0.8" 2440 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2441 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2442 | 2443 | type-fest@^0.21.3: 2444 | version "0.21.3" 2445 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2446 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2447 | 2448 | typedarray-to-buffer@^3.1.5: 2449 | version "3.1.5" 2450 | resolved "https://registry.yarnpkg.com/typedarray-to-buffer/-/typedarray-to-buffer-3.1.5.tgz#a97ee7a9ff42691b9f783ff1bc5112fe3fca9080" 2451 | integrity sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q== 2452 | dependencies: 2453 | is-typedarray "^1.0.0" 2454 | 2455 | universalify@^0.2.0: 2456 | version "0.2.0" 2457 | resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" 2458 | integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== 2459 | 2460 | url-parse@^1.5.3: 2461 | version "1.5.10" 2462 | resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" 2463 | integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== 2464 | dependencies: 2465 | querystringify "^2.1.1" 2466 | requires-port "^1.0.0" 2467 | 2468 | v8-to-istanbul@^8.1.0: 2469 | version "8.1.0" 2470 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-8.1.0.tgz#0aeb763894f1a0a1676adf8a8b7612a38902446c" 2471 | integrity sha512-/PRhfd8aTNp9Ggr62HPzXg2XasNFGy5PBt0Rp04du7/8GNNSgxFL6WBTkgMKSL9bFjH+8kKEG3f37FmxiTqUUA== 2472 | dependencies: 2473 | "@types/istanbul-lib-coverage" "^2.0.1" 2474 | convert-source-map "^1.6.0" 2475 | source-map "^0.7.3" 2476 | 2477 | w3c-hr-time@^1.0.2: 2478 | version "1.0.2" 2479 | resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.2.tgz#0a89cdf5cc15822df9c360543676963e0cc308cd" 2480 | integrity sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ== 2481 | dependencies: 2482 | browser-process-hrtime "^1.0.0" 2483 | 2484 | w3c-xmlserializer@^2.0.0: 2485 | version "2.0.0" 2486 | resolved "https://registry.yarnpkg.com/w3c-xmlserializer/-/w3c-xmlserializer-2.0.0.tgz#3e7104a05b75146cc60f564380b7f683acf1020a" 2487 | integrity sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA== 2488 | dependencies: 2489 | xml-name-validator "^3.0.0" 2490 | 2491 | walker@^1.0.7: 2492 | version "1.0.7" 2493 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.7.tgz#2f7f9b8fd10d677262b18a884e28d19618e028fb" 2494 | integrity sha1-L3+bj9ENZ3JisYqITijRlhjgKPs= 2495 | dependencies: 2496 | makeerror "1.0.x" 2497 | 2498 | webidl-conversions@^5.0.0: 2499 | version "5.0.0" 2500 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-5.0.0.tgz#ae59c8a00b121543a2acc65c0434f57b0fc11aff" 2501 | integrity sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA== 2502 | 2503 | webidl-conversions@^6.1.0: 2504 | version "6.1.0" 2505 | resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-6.1.0.tgz#9111b4d7ea80acd40f5270d666621afa78b69514" 2506 | integrity sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w== 2507 | 2508 | whatwg-encoding@^1.0.5: 2509 | version "1.0.5" 2510 | resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0" 2511 | integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw== 2512 | dependencies: 2513 | iconv-lite "0.4.24" 2514 | 2515 | whatwg-mimetype@^2.3.0: 2516 | version "2.3.0" 2517 | resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf" 2518 | integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g== 2519 | 2520 | whatwg-url@^8.0.0, whatwg-url@^8.5.0: 2521 | version "8.7.0" 2522 | resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-8.7.0.tgz#656a78e510ff8f3937bc0bcbe9f5c0ac35941b77" 2523 | integrity sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg== 2524 | dependencies: 2525 | lodash "^4.7.0" 2526 | tr46 "^2.1.0" 2527 | webidl-conversions "^6.1.0" 2528 | 2529 | which@^2.0.1: 2530 | version "2.0.2" 2531 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2532 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2533 | dependencies: 2534 | isexe "^2.0.0" 2535 | 2536 | word-wrap@~1.2.3: 2537 | version "1.2.3" 2538 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" 2539 | integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== 2540 | 2541 | wrap-ansi@^7.0.0: 2542 | version "7.0.0" 2543 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2544 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2545 | dependencies: 2546 | ansi-styles "^4.0.0" 2547 | string-width "^4.1.0" 2548 | strip-ansi "^6.0.0" 2549 | 2550 | wrappy@1: 2551 | version "1.0.2" 2552 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2553 | integrity sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8= 2554 | 2555 | write-file-atomic@^3.0.0: 2556 | version "3.0.3" 2557 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-3.0.3.tgz#56bd5c5a5c70481cd19c571bd39ab965a5de56e8" 2558 | integrity sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q== 2559 | dependencies: 2560 | imurmurhash "^0.1.4" 2561 | is-typedarray "^1.0.0" 2562 | signal-exit "^3.0.2" 2563 | typedarray-to-buffer "^3.1.5" 2564 | 2565 | ws@^7.4.6: 2566 | version "7.5.5" 2567 | resolved "https://registry.yarnpkg.com/ws/-/ws-7.5.5.tgz#8b4bc4af518cfabd0473ae4f99144287b33eb881" 2568 | integrity sha512-BAkMFcAzl8as1G/hArkxOxq3G7pjUqQ3gzYbLL0/5zNkph70e+lCoxBGnm6AW1+/aiNeV4fnKqZ8m4GZewmH2w== 2569 | 2570 | xml-name-validator@^3.0.0: 2571 | version "3.0.0" 2572 | resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a" 2573 | integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw== 2574 | 2575 | xmlchars@^2.2.0: 2576 | version "2.2.0" 2577 | resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.2.0.tgz#060fe1bcb7f9c76fe2a17db86a9bc3ab894210cb" 2578 | integrity sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw== 2579 | 2580 | y18n@^5.0.5: 2581 | version "5.0.8" 2582 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2583 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2584 | 2585 | yallist@^4.0.0: 2586 | version "4.0.0" 2587 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2588 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2589 | 2590 | yargs-parser@^20.2.2: 2591 | version "20.2.9" 2592 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-20.2.9.tgz#2eb7dc3b0289718fc295f362753845c41a0c94ee" 2593 | integrity sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w== 2594 | 2595 | yargs@^16.2.0: 2596 | version "16.2.0" 2597 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-16.2.0.tgz#1c82bf0f6b6a66eafce7ef30e376f49a12477f66" 2598 | integrity sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw== 2599 | dependencies: 2600 | cliui "^7.0.2" 2601 | escalade "^3.1.1" 2602 | get-caller-file "^2.0.5" 2603 | require-directory "^2.1.1" 2604 | string-width "^4.2.0" 2605 | y18n "^5.0.5" 2606 | yargs-parser "^20.2.2" 2607 | --------------------------------------------------------------------------------