├── .eslintrc.json ├── .gitignore ├── .prettierrc.json ├── .vscode └── settings.json ├── README.md ├── calculator.js ├── details.json ├── images ├── difference-between-primitive-and-non-primitive-datatypes-12-1650387712.png ├── hof.png ├── image-4.png ├── image-5.png └── roadmap.png ├── index.html ├── index.js ├── package-lock.json ├── package.json ├── style.css ├── test.css ├── test.excalidraw ├── test.html └── test.js /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "es2021": true 5 | }, 6 | "extends": ["airbnb-base"], 7 | "parserOptions": { 8 | "ecmaVersion": "latest", 9 | "sourceType": "module" 10 | }, 11 | "rules": { 12 | "no-plusplus": "off" 13 | } 14 | } 15 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "bracketSameLine": true 3 | } 4 | -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "editor.defaultFormatter": "esbenp.prettier-vscode", 3 | "bracketSameLine": true, 4 | "editor.formatOnSave": true, 5 | "[javascript]": { 6 | "editor.formatOnSave": false 7 | }, 8 | "[javascriptreact]": { 9 | "editor.formatOnSave": false 10 | }, 11 | "editor.codeActionsOnSave": { 12 | "source.fixAll": true 13 | }, 14 | "eslint.alwaysShowStatus": true, 15 | "eslint.validate": [ 16 | "javascript", 17 | "javascriptreact", 18 | "typescript", 19 | "typescriptreact" 20 | ], 21 | "liveServer.settings.port": 5501 22 | } 23 | -------------------------------------------------------------------------------- /calculator.js: -------------------------------------------------------------------------------- 1 | const add = () => { 2 | console.log("added"); 3 | }; 4 | export { add }; 5 | -------------------------------------------------------------------------------- /details.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": 101, 4 | "fullName": "Frances Fogarty", 5 | "country": "Sweden", 6 | "github": "https://github.com/femmiennine", 7 | "numberOfRepo": 23, 8 | "numberOfCompletedAssignment": 3 9 | }, 10 | { 11 | "id": 102, 12 | "fullName": "Ronja Pietrzykowska", 13 | "country": "Denmark", 14 | "github": "https://github.com/ronja-p", 15 | "numberOfRepo": 2, 16 | "numberOfCompletedAssignment": 2 17 | }, 18 | { 19 | "id": 103, 20 | "fullName": "Alice Salvi", 21 | "country": "Denmark", 22 | "github": "https://github.com/alicejasmine", 23 | "numberOfRepo": 0, 24 | "numberOfCompletedAssignment": 1 25 | }, 26 | { 27 | "id": 104, 28 | "fullName": "Roshan", 29 | "country": "Sweden", 30 | "github": "https://github.com/roshan1111", 31 | "numberOfRepo": 10, 32 | "numberOfCompletedAssignment": 3 33 | }, 34 | { 35 | "id": 105, 36 | "fullName": "Abdulrahman M Mohammed", 37 | "country": "Germany", 38 | "github": "https://github.com/DialloVerse", 39 | "numberOfRepo": 15, 40 | "numberOfCompletedAssignment": 0 41 | }, 42 | { 43 | "id": 106, 44 | "fullName": "Zia Ur Rehman", 45 | "country": "Germany", 46 | "github": "https://github.com/zia-dsv", 47 | "numberOfRepo": 1, 48 | "numberOfCompletedAssignment": 0 49 | }, 50 | { 51 | "id": 107, 52 | "fullName": "Mani Kumar", 53 | "country": "Germany", 54 | "github": "https://github.com/Manihellodjango", 55 | "numberOfRepo": 7, 56 | "numberOfCompletedAssignment": 1 57 | }, 58 | { 59 | "id": 108, 60 | "fullName": "Rehan Munawar", 61 | "country": "Sweden", 62 | "github": "https://github.com/iamrehaaan", 63 | "numberOfRepo": 4, 64 | "numberOfCompletedAssignment": 0 65 | }, 66 | { 67 | "id": 109, 68 | "fullName": "Madhu manjunatha", 69 | "country": "Denmark", 70 | "github": "https://github.com/madhumanjunath95", 71 | "numberOfRepo": 3, 72 | "numberOfCompletedAssignment": 3 73 | }, 74 | { 75 | "id": 110, 76 | "fullName": "Xiahui Liu", 77 | "country": "Denmark", 78 | "github": "https://github.com/newbieherecs", 79 | "numberOfRepo": 2, 80 | "numberOfCompletedAssignment": 0 81 | }, 82 | { 83 | "id": 111, 84 | "fullName": "Andrii Kuzmenko", 85 | "country": "Denmark", 86 | "github": "https://github.com/directx14", 87 | "numberOfRepo": 26, 88 | "numberOfCompletedAssignment": 0 89 | }, 90 | { 91 | "id": 112, 92 | "fullName": "Mairaj Siddiqui", 93 | "country": "Sweden", 94 | "github": "https://github.com/MairajSwe", 95 | "numberOfRepo": 5, 96 | "numberOfCompletedAssignment": 1 97 | }, 98 | { 99 | "id": 113, 100 | "fullName": "Richard", 101 | "country": "Denmark", 102 | "github": "https://github.com/richpong212", 103 | "numberOfRepo": 29, 104 | "numberOfCompletedAssignment": 0 105 | }, 106 | { 107 | "id": 114, 108 | "fullName": "Hamid Reza", 109 | "country": "Sweden", 110 | "github": "https://github.com/ihamidreza", 111 | "numberOfRepo": 0, 112 | "numberOfCompletedAssignment": 0 113 | }, 114 | { 115 | "id": 115, 116 | "fullName": "Rika Nishimura", 117 | "country": "Sweden", 118 | "github": "https://github.com/codecat226", 119 | "numberOfRepo": 4, 120 | "numberOfCompletedAssignment": 1 121 | }, 122 | { 123 | "id": 116, 124 | "fullName": "Marcello Mulas", 125 | "country": "Germany", 126 | "github": "https://github.com/GigiKrugman", 127 | "numberOfRepo": 11, 128 | "numberOfCompletedAssignment": 2 129 | } 130 | ] 131 | -------------------------------------------------------------------------------- /images/difference-between-primitive-and-non-primitive-datatypes-12-1650387712.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anisul-Islam/javascript-documentation/54629060bf90abba9969a24af5fee0209588a736/images/difference-between-primitive-and-non-primitive-datatypes-12-1650387712.png -------------------------------------------------------------------------------- /images/hof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anisul-Islam/javascript-documentation/54629060bf90abba9969a24af5fee0209588a736/images/hof.png -------------------------------------------------------------------------------- /images/image-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anisul-Islam/javascript-documentation/54629060bf90abba9969a24af5fee0209588a736/images/image-4.png -------------------------------------------------------------------------------- /images/image-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anisul-Islam/javascript-documentation/54629060bf90abba9969a24af5fee0209588a736/images/image-5.png -------------------------------------------------------------------------------- /images/roadmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anisul-Islam/javascript-documentation/54629060bf90abba9969a24af5fee0209588a736/images/roadmap.png -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | Document 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | // API - Application Programming interface 2 | // dog api - https://dog.ceo/api/breeds/image/random 3 | 4 | // const dogImage = document.querySelector('.dog-image'); 5 | 6 | // const changeButton = document.querySelector('button'); 7 | 8 | // changeButton.onclick = () => { 9 | // // asynchronous - we need to wait here for fetching the data 10 | // fetch('https://dog.ceo/api/breeds/image/random') 11 | // .then((res) => res.json()) 12 | // .then((data) => dogImage.innerHTML = ``); 13 | // }; 14 | 15 | // console.log(fetch('https://dog.ceo/api/breeds/image/random')); 16 | -------------------------------------------------------------------------------- /package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "javascript-documentation", 3 | "version": "1.0.0", 4 | "lockfileVersion": 1, 5 | "requires": true, 6 | "dependencies": { 7 | "@eslint/eslintrc": { 8 | "version": "1.3.0", 9 | "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-1.3.0.tgz", 10 | "integrity": "sha512-UWW0TMTmk2d7hLcWD1/e2g5HDM/HQ3csaLSqXCfqwh4uNDuNqlaKWXmEsL4Cs41Z0KnILNvwbHAah3C2yt06kw==", 11 | "dev": true, 12 | "requires": { 13 | "ajv": "^6.12.4", 14 | "debug": "^4.3.2", 15 | "espree": "^9.3.2", 16 | "globals": "^13.15.0", 17 | "ignore": "^5.2.0", 18 | "import-fresh": "^3.2.1", 19 | "js-yaml": "^4.1.0", 20 | "minimatch": "^3.1.2", 21 | "strip-json-comments": "^3.1.1" 22 | } 23 | }, 24 | "@humanwhocodes/config-array": { 25 | "version": "0.10.4", 26 | "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.10.4.tgz", 27 | "integrity": "sha512-mXAIHxZT3Vcpg83opl1wGlVZ9xydbfZO3r5YfRSH6Gpp2J/PfdBP0wbDa2sO6/qRbcalpoevVyW6A/fI6LfeMw==", 28 | "dev": true, 29 | "requires": { 30 | "@humanwhocodes/object-schema": "^1.2.1", 31 | "debug": "^4.1.1", 32 | "minimatch": "^3.0.4" 33 | } 34 | }, 35 | "@humanwhocodes/gitignore-to-minimatch": { 36 | "version": "1.0.2", 37 | "resolved": "https://registry.npmjs.org/@humanwhocodes/gitignore-to-minimatch/-/gitignore-to-minimatch-1.0.2.tgz", 38 | "integrity": "sha512-rSqmMJDdLFUsyxR6FMtD00nfQKKLFb1kv+qBbOVKqErvloEIJLo5bDTJTQNTYgeyp78JsA7u/NPi5jT1GR/MuA==", 39 | "dev": true 40 | }, 41 | "@humanwhocodes/object-schema": { 42 | "version": "1.2.1", 43 | "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", 44 | "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", 45 | "dev": true 46 | }, 47 | "@nodelib/fs.scandir": { 48 | "version": "2.1.5", 49 | "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", 50 | "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", 51 | "dev": true, 52 | "requires": { 53 | "@nodelib/fs.stat": "2.0.5", 54 | "run-parallel": "^1.1.9" 55 | } 56 | }, 57 | "@nodelib/fs.stat": { 58 | "version": "2.0.5", 59 | "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", 60 | "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", 61 | "dev": true 62 | }, 63 | "@nodelib/fs.walk": { 64 | "version": "1.2.8", 65 | "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", 66 | "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", 67 | "dev": true, 68 | "requires": { 69 | "@nodelib/fs.scandir": "2.1.5", 70 | "fastq": "^1.6.0" 71 | } 72 | }, 73 | "@types/json5": { 74 | "version": "0.0.29", 75 | "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", 76 | "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", 77 | "dev": true 78 | }, 79 | "acorn": { 80 | "version": "8.8.0", 81 | "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.8.0.tgz", 82 | "integrity": "sha512-QOxyigPVrpZ2GXT+PFyZTl6TtOFc5egxHIP9IlQ+RbupQuX4RkT/Bee4/kQuC02Xkzg84JcT7oLYtDIQxp+v7w==", 83 | "dev": true 84 | }, 85 | "acorn-jsx": { 86 | "version": "5.3.2", 87 | "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", 88 | "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", 89 | "dev": true 90 | }, 91 | "ajv": { 92 | "version": "6.12.6", 93 | "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", 94 | "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", 95 | "dev": true, 96 | "requires": { 97 | "fast-deep-equal": "^3.1.1", 98 | "fast-json-stable-stringify": "^2.0.0", 99 | "json-schema-traverse": "^0.4.1", 100 | "uri-js": "^4.2.2" 101 | } 102 | }, 103 | "ansi-regex": { 104 | "version": "5.0.1", 105 | "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", 106 | "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", 107 | "dev": true 108 | }, 109 | "ansi-styles": { 110 | "version": "4.3.0", 111 | "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", 112 | "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", 113 | "dev": true, 114 | "requires": { 115 | "color-convert": "^2.0.1" 116 | } 117 | }, 118 | "argparse": { 119 | "version": "2.0.1", 120 | "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", 121 | "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", 122 | "dev": true 123 | }, 124 | "array-includes": { 125 | "version": "3.1.5", 126 | "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.5.tgz", 127 | "integrity": "sha512-iSDYZMMyTPkiFasVqfuAQnWAYcvO/SeBSCGKePoEthjp4LEMTe4uLc7b025o4jAZpHhihh8xPo99TNWUWWkGDQ==", 128 | "dev": true, 129 | "requires": { 130 | "call-bind": "^1.0.2", 131 | "define-properties": "^1.1.4", 132 | "es-abstract": "^1.19.5", 133 | "get-intrinsic": "^1.1.1", 134 | "is-string": "^1.0.7" 135 | } 136 | }, 137 | "array-union": { 138 | "version": "2.1.0", 139 | "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", 140 | "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", 141 | "dev": true 142 | }, 143 | "array.prototype.flat": { 144 | "version": "1.3.0", 145 | "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.0.tgz", 146 | "integrity": "sha512-12IUEkHsAhA4DY5s0FPgNXIdc8VRSqD9Zp78a5au9abH/SOBrsp082JOWFNTjkMozh8mqcdiKuaLGhPeYztxSw==", 147 | "dev": true, 148 | "requires": { 149 | "call-bind": "^1.0.2", 150 | "define-properties": "^1.1.3", 151 | "es-abstract": "^1.19.2", 152 | "es-shim-unscopables": "^1.0.0" 153 | } 154 | }, 155 | "balanced-match": { 156 | "version": "1.0.2", 157 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", 158 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", 159 | "dev": true 160 | }, 161 | "brace-expansion": { 162 | "version": "1.1.11", 163 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", 164 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", 165 | "dev": true, 166 | "requires": { 167 | "balanced-match": "^1.0.0", 168 | "concat-map": "0.0.1" 169 | } 170 | }, 171 | "braces": { 172 | "version": "3.0.2", 173 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", 174 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", 175 | "dev": true, 176 | "requires": { 177 | "fill-range": "^7.0.1" 178 | } 179 | }, 180 | "call-bind": { 181 | "version": "1.0.2", 182 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", 183 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", 184 | "dev": true, 185 | "requires": { 186 | "function-bind": "^1.1.1", 187 | "get-intrinsic": "^1.0.2" 188 | } 189 | }, 190 | "callsites": { 191 | "version": "3.1.0", 192 | "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", 193 | "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", 194 | "dev": true 195 | }, 196 | "chalk": { 197 | "version": "4.1.2", 198 | "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", 199 | "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", 200 | "dev": true, 201 | "requires": { 202 | "ansi-styles": "^4.1.0", 203 | "supports-color": "^7.1.0" 204 | } 205 | }, 206 | "color-convert": { 207 | "version": "2.0.1", 208 | "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", 209 | "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", 210 | "dev": true, 211 | "requires": { 212 | "color-name": "~1.1.4" 213 | } 214 | }, 215 | "color-name": { 216 | "version": "1.1.4", 217 | "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", 218 | "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", 219 | "dev": true 220 | }, 221 | "concat-map": { 222 | "version": "0.0.1", 223 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", 224 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", 225 | "dev": true 226 | }, 227 | "confusing-browser-globals": { 228 | "version": "1.0.11", 229 | "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", 230 | "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", 231 | "dev": true 232 | }, 233 | "cross-spawn": { 234 | "version": "7.0.3", 235 | "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", 236 | "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", 237 | "dev": true, 238 | "requires": { 239 | "path-key": "^3.1.0", 240 | "shebang-command": "^2.0.0", 241 | "which": "^2.0.1" 242 | } 243 | }, 244 | "debug": { 245 | "version": "4.3.4", 246 | "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", 247 | "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", 248 | "dev": true, 249 | "requires": { 250 | "ms": "2.1.2" 251 | } 252 | }, 253 | "deep-is": { 254 | "version": "0.1.4", 255 | "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", 256 | "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", 257 | "dev": true 258 | }, 259 | "define-properties": { 260 | "version": "1.1.4", 261 | "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.4.tgz", 262 | "integrity": "sha512-uckOqKcfaVvtBdsVkdPv3XjveQJsNQqmhXgRi8uhvWWuPYZCNlzT8qAyblUgNoXdHdjMTzAqeGjAoli8f+bzPA==", 263 | "dev": true, 264 | "requires": { 265 | "has-property-descriptors": "^1.0.0", 266 | "object-keys": "^1.1.1" 267 | } 268 | }, 269 | "dir-glob": { 270 | "version": "3.0.1", 271 | "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", 272 | "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", 273 | "dev": true, 274 | "requires": { 275 | "path-type": "^4.0.0" 276 | } 277 | }, 278 | "doctrine": { 279 | "version": "3.0.0", 280 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", 281 | "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", 282 | "dev": true, 283 | "requires": { 284 | "esutils": "^2.0.2" 285 | } 286 | }, 287 | "es-abstract": { 288 | "version": "1.20.1", 289 | "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.20.1.tgz", 290 | "integrity": "sha512-WEm2oBhfoI2sImeM4OF2zE2V3BYdSF+KnSi9Sidz51fQHd7+JuF8Xgcj9/0o+OWeIeIS/MiuNnlruQrJf16GQA==", 291 | "dev": true, 292 | "requires": { 293 | "call-bind": "^1.0.2", 294 | "es-to-primitive": "^1.2.1", 295 | "function-bind": "^1.1.1", 296 | "function.prototype.name": "^1.1.5", 297 | "get-intrinsic": "^1.1.1", 298 | "get-symbol-description": "^1.0.0", 299 | "has": "^1.0.3", 300 | "has-property-descriptors": "^1.0.0", 301 | "has-symbols": "^1.0.3", 302 | "internal-slot": "^1.0.3", 303 | "is-callable": "^1.2.4", 304 | "is-negative-zero": "^2.0.2", 305 | "is-regex": "^1.1.4", 306 | "is-shared-array-buffer": "^1.0.2", 307 | "is-string": "^1.0.7", 308 | "is-weakref": "^1.0.2", 309 | "object-inspect": "^1.12.0", 310 | "object-keys": "^1.1.1", 311 | "object.assign": "^4.1.2", 312 | "regexp.prototype.flags": "^1.4.3", 313 | "string.prototype.trimend": "^1.0.5", 314 | "string.prototype.trimstart": "^1.0.5", 315 | "unbox-primitive": "^1.0.2" 316 | } 317 | }, 318 | "es-shim-unscopables": { 319 | "version": "1.0.0", 320 | "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", 321 | "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", 322 | "dev": true, 323 | "requires": { 324 | "has": "^1.0.3" 325 | } 326 | }, 327 | "es-to-primitive": { 328 | "version": "1.2.1", 329 | "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", 330 | "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", 331 | "dev": true, 332 | "requires": { 333 | "is-callable": "^1.1.4", 334 | "is-date-object": "^1.0.1", 335 | "is-symbol": "^1.0.2" 336 | } 337 | }, 338 | "escape-string-regexp": { 339 | "version": "4.0.0", 340 | "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", 341 | "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", 342 | "dev": true 343 | }, 344 | "eslint": { 345 | "version": "8.21.0", 346 | "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.21.0.tgz", 347 | "integrity": "sha512-/XJ1+Qurf1T9G2M5IHrsjp+xrGT73RZf23xA1z5wB1ZzzEAWSZKvRwhWxTFp1rvkvCfwcvAUNAP31bhKTTGfDA==", 348 | "dev": true, 349 | "requires": { 350 | "@eslint/eslintrc": "^1.3.0", 351 | "@humanwhocodes/config-array": "^0.10.4", 352 | "@humanwhocodes/gitignore-to-minimatch": "^1.0.2", 353 | "ajv": "^6.10.0", 354 | "chalk": "^4.0.0", 355 | "cross-spawn": "^7.0.2", 356 | "debug": "^4.3.2", 357 | "doctrine": "^3.0.0", 358 | "escape-string-regexp": "^4.0.0", 359 | "eslint-scope": "^7.1.1", 360 | "eslint-utils": "^3.0.0", 361 | "eslint-visitor-keys": "^3.3.0", 362 | "espree": "^9.3.3", 363 | "esquery": "^1.4.0", 364 | "esutils": "^2.0.2", 365 | "fast-deep-equal": "^3.1.3", 366 | "file-entry-cache": "^6.0.1", 367 | "find-up": "^5.0.0", 368 | "functional-red-black-tree": "^1.0.1", 369 | "glob-parent": "^6.0.1", 370 | "globals": "^13.15.0", 371 | "globby": "^11.1.0", 372 | "grapheme-splitter": "^1.0.4", 373 | "ignore": "^5.2.0", 374 | "import-fresh": "^3.0.0", 375 | "imurmurhash": "^0.1.4", 376 | "is-glob": "^4.0.0", 377 | "js-yaml": "^4.1.0", 378 | "json-stable-stringify-without-jsonify": "^1.0.1", 379 | "levn": "^0.4.1", 380 | "lodash.merge": "^4.6.2", 381 | "minimatch": "^3.1.2", 382 | "natural-compare": "^1.4.0", 383 | "optionator": "^0.9.1", 384 | "regexpp": "^3.2.0", 385 | "strip-ansi": "^6.0.1", 386 | "strip-json-comments": "^3.1.0", 387 | "text-table": "^0.2.0", 388 | "v8-compile-cache": "^2.0.3" 389 | } 390 | }, 391 | "eslint-config-airbnb-base": { 392 | "version": "15.0.0", 393 | "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", 394 | "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", 395 | "dev": true, 396 | "requires": { 397 | "confusing-browser-globals": "^1.0.10", 398 | "object.assign": "^4.1.2", 399 | "object.entries": "^1.1.5", 400 | "semver": "^6.3.0" 401 | } 402 | }, 403 | "eslint-import-resolver-node": { 404 | "version": "0.3.6", 405 | "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.6.tgz", 406 | "integrity": "sha512-0En0w03NRVMn9Uiyn8YRPDKvWjxCWkslUEhGNTdGx15RvPJYQ+lbOlqrlNI2vEAs4pDYK4f/HN2TbDmk5TP0iw==", 407 | "dev": true, 408 | "requires": { 409 | "debug": "^3.2.7", 410 | "resolve": "^1.20.0" 411 | }, 412 | "dependencies": { 413 | "debug": { 414 | "version": "3.2.7", 415 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 416 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 417 | "dev": true, 418 | "requires": { 419 | "ms": "^2.1.1" 420 | } 421 | } 422 | } 423 | }, 424 | "eslint-module-utils": { 425 | "version": "2.7.4", 426 | "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", 427 | "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", 428 | "dev": true, 429 | "requires": { 430 | "debug": "^3.2.7" 431 | }, 432 | "dependencies": { 433 | "debug": { 434 | "version": "3.2.7", 435 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", 436 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", 437 | "dev": true, 438 | "requires": { 439 | "ms": "^2.1.1" 440 | } 441 | } 442 | } 443 | }, 444 | "eslint-plugin-import": { 445 | "version": "2.26.0", 446 | "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.26.0.tgz", 447 | "integrity": "sha512-hYfi3FXaM8WPLf4S1cikh/r4IxnO6zrhZbEGz2b660EJRbuxgpDS5gkCuYgGWg2xxh2rBuIr4Pvhve/7c31koA==", 448 | "dev": true, 449 | "requires": { 450 | "array-includes": "^3.1.4", 451 | "array.prototype.flat": "^1.2.5", 452 | "debug": "^2.6.9", 453 | "doctrine": "^2.1.0", 454 | "eslint-import-resolver-node": "^0.3.6", 455 | "eslint-module-utils": "^2.7.3", 456 | "has": "^1.0.3", 457 | "is-core-module": "^2.8.1", 458 | "is-glob": "^4.0.3", 459 | "minimatch": "^3.1.2", 460 | "object.values": "^1.1.5", 461 | "resolve": "^1.22.0", 462 | "tsconfig-paths": "^3.14.1" 463 | }, 464 | "dependencies": { 465 | "debug": { 466 | "version": "2.6.9", 467 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", 468 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", 469 | "dev": true, 470 | "requires": { 471 | "ms": "2.0.0" 472 | } 473 | }, 474 | "doctrine": { 475 | "version": "2.1.0", 476 | "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", 477 | "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", 478 | "dev": true, 479 | "requires": { 480 | "esutils": "^2.0.2" 481 | } 482 | }, 483 | "ms": { 484 | "version": "2.0.0", 485 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", 486 | "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", 487 | "dev": true 488 | } 489 | } 490 | }, 491 | "eslint-scope": { 492 | "version": "7.1.1", 493 | "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.1.1.tgz", 494 | "integrity": "sha512-QKQM/UXpIiHcLqJ5AOyIW7XZmzjkzQXYE54n1++wb0u9V/abW3l9uQnxX8Z5Xd18xyKIMTUAyQ0k1e8pz6LUrw==", 495 | "dev": true, 496 | "requires": { 497 | "esrecurse": "^4.3.0", 498 | "estraverse": "^5.2.0" 499 | } 500 | }, 501 | "eslint-utils": { 502 | "version": "3.0.0", 503 | "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", 504 | "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", 505 | "dev": true, 506 | "requires": { 507 | "eslint-visitor-keys": "^2.0.0" 508 | }, 509 | "dependencies": { 510 | "eslint-visitor-keys": { 511 | "version": "2.1.0", 512 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", 513 | "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", 514 | "dev": true 515 | } 516 | } 517 | }, 518 | "eslint-visitor-keys": { 519 | "version": "3.3.0", 520 | "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.3.0.tgz", 521 | "integrity": "sha512-mQ+suqKJVyeuwGYHAdjMFqjCyfl8+Ldnxuyp3ldiMBFKkvytrXUZWaiPCEav8qDHKty44bD+qV1IP4T+w+xXRA==", 522 | "dev": true 523 | }, 524 | "espree": { 525 | "version": "9.3.3", 526 | "resolved": "https://registry.npmjs.org/espree/-/espree-9.3.3.tgz", 527 | "integrity": "sha512-ORs1Rt/uQTqUKjDdGCyrtYxbazf5umATSf/K4qxjmZHORR6HJk+2s/2Pqe+Kk49HHINC/xNIrGfgh8sZcll0ng==", 528 | "dev": true, 529 | "requires": { 530 | "acorn": "^8.8.0", 531 | "acorn-jsx": "^5.3.2", 532 | "eslint-visitor-keys": "^3.3.0" 533 | } 534 | }, 535 | "esquery": { 536 | "version": "1.4.0", 537 | "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.4.0.tgz", 538 | "integrity": "sha512-cCDispWt5vHHtwMY2YrAQ4ibFkAL8RbH5YGBnZBc90MolvvfkkQcJro/aZiAQUlQ3qgrYS6D6v8Gc5G5CQsc9w==", 539 | "dev": true, 540 | "requires": { 541 | "estraverse": "^5.1.0" 542 | } 543 | }, 544 | "esrecurse": { 545 | "version": "4.3.0", 546 | "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", 547 | "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", 548 | "dev": true, 549 | "requires": { 550 | "estraverse": "^5.2.0" 551 | } 552 | }, 553 | "estraverse": { 554 | "version": "5.3.0", 555 | "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", 556 | "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", 557 | "dev": true 558 | }, 559 | "esutils": { 560 | "version": "2.0.3", 561 | "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", 562 | "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", 563 | "dev": true 564 | }, 565 | "fast-deep-equal": { 566 | "version": "3.1.3", 567 | "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", 568 | "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", 569 | "dev": true 570 | }, 571 | "fast-glob": { 572 | "version": "3.2.11", 573 | "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.2.11.tgz", 574 | "integrity": "sha512-xrO3+1bxSo3ZVHAnqzyuewYT6aMFHRAd4Kcs92MAonjwQZLsK9d0SF1IyQ3k5PoirxTW0Oe/RqFgMQ6TcNE5Ew==", 575 | "dev": true, 576 | "requires": { 577 | "@nodelib/fs.stat": "^2.0.2", 578 | "@nodelib/fs.walk": "^1.2.3", 579 | "glob-parent": "^5.1.2", 580 | "merge2": "^1.3.0", 581 | "micromatch": "^4.0.4" 582 | }, 583 | "dependencies": { 584 | "glob-parent": { 585 | "version": "5.1.2", 586 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", 587 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", 588 | "dev": true, 589 | "requires": { 590 | "is-glob": "^4.0.1" 591 | } 592 | } 593 | } 594 | }, 595 | "fast-json-stable-stringify": { 596 | "version": "2.1.0", 597 | "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", 598 | "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", 599 | "dev": true 600 | }, 601 | "fast-levenshtein": { 602 | "version": "2.0.6", 603 | "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", 604 | "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", 605 | "dev": true 606 | }, 607 | "fastq": { 608 | "version": "1.13.0", 609 | "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", 610 | "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", 611 | "dev": true, 612 | "requires": { 613 | "reusify": "^1.0.4" 614 | } 615 | }, 616 | "file-entry-cache": { 617 | "version": "6.0.1", 618 | "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", 619 | "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", 620 | "dev": true, 621 | "requires": { 622 | "flat-cache": "^3.0.4" 623 | } 624 | }, 625 | "fill-range": { 626 | "version": "7.0.1", 627 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", 628 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", 629 | "dev": true, 630 | "requires": { 631 | "to-regex-range": "^5.0.1" 632 | } 633 | }, 634 | "find-up": { 635 | "version": "5.0.0", 636 | "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", 637 | "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", 638 | "dev": true, 639 | "requires": { 640 | "locate-path": "^6.0.0", 641 | "path-exists": "^4.0.0" 642 | } 643 | }, 644 | "flat-cache": { 645 | "version": "3.0.4", 646 | "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", 647 | "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", 648 | "dev": true, 649 | "requires": { 650 | "flatted": "^3.1.0", 651 | "rimraf": "^3.0.2" 652 | } 653 | }, 654 | "flatted": { 655 | "version": "3.2.6", 656 | "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.6.tgz", 657 | "integrity": "sha512-0sQoMh9s0BYsm+12Huy/rkKxVu4R1+r96YX5cG44rHV0pQ6iC3Q+mkoMFaGWObMFYQxCVT+ssG1ksneA2MI9KQ==", 658 | "dev": true 659 | }, 660 | "fs.realpath": { 661 | "version": "1.0.0", 662 | "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", 663 | "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", 664 | "dev": true 665 | }, 666 | "function-bind": { 667 | "version": "1.1.1", 668 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", 669 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", 670 | "dev": true 671 | }, 672 | "function.prototype.name": { 673 | "version": "1.1.5", 674 | "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.5.tgz", 675 | "integrity": "sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==", 676 | "dev": true, 677 | "requires": { 678 | "call-bind": "^1.0.2", 679 | "define-properties": "^1.1.3", 680 | "es-abstract": "^1.19.0", 681 | "functions-have-names": "^1.2.2" 682 | } 683 | }, 684 | "functional-red-black-tree": { 685 | "version": "1.0.1", 686 | "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", 687 | "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", 688 | "dev": true 689 | }, 690 | "functions-have-names": { 691 | "version": "1.2.3", 692 | "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", 693 | "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", 694 | "dev": true 695 | }, 696 | "get-intrinsic": { 697 | "version": "1.1.2", 698 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.2.tgz", 699 | "integrity": "sha512-Jfm3OyCxHh9DJyc28qGk+JmfkpO41A4XkneDSujN9MDXrm4oDKdHvndhZ2dN94+ERNfkYJWDclW6k2L/ZGHjXA==", 700 | "dev": true, 701 | "requires": { 702 | "function-bind": "^1.1.1", 703 | "has": "^1.0.3", 704 | "has-symbols": "^1.0.3" 705 | } 706 | }, 707 | "get-symbol-description": { 708 | "version": "1.0.0", 709 | "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", 710 | "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", 711 | "dev": true, 712 | "requires": { 713 | "call-bind": "^1.0.2", 714 | "get-intrinsic": "^1.1.1" 715 | } 716 | }, 717 | "glob": { 718 | "version": "7.2.3", 719 | "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", 720 | "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", 721 | "dev": true, 722 | "requires": { 723 | "fs.realpath": "^1.0.0", 724 | "inflight": "^1.0.4", 725 | "inherits": "2", 726 | "minimatch": "^3.1.1", 727 | "once": "^1.3.0", 728 | "path-is-absolute": "^1.0.0" 729 | } 730 | }, 731 | "glob-parent": { 732 | "version": "6.0.2", 733 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", 734 | "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", 735 | "dev": true, 736 | "requires": { 737 | "is-glob": "^4.0.3" 738 | } 739 | }, 740 | "globals": { 741 | "version": "13.17.0", 742 | "resolved": "https://registry.npmjs.org/globals/-/globals-13.17.0.tgz", 743 | "integrity": "sha512-1C+6nQRb1GwGMKm2dH/E7enFAMxGTmGI7/dEdhy/DNelv85w9B72t3uc5frtMNXIbzrarJJ/lTCjcaZwbLJmyw==", 744 | "dev": true, 745 | "requires": { 746 | "type-fest": "^0.20.2" 747 | } 748 | }, 749 | "globby": { 750 | "version": "11.1.0", 751 | "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", 752 | "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", 753 | "dev": true, 754 | "requires": { 755 | "array-union": "^2.1.0", 756 | "dir-glob": "^3.0.1", 757 | "fast-glob": "^3.2.9", 758 | "ignore": "^5.2.0", 759 | "merge2": "^1.4.1", 760 | "slash": "^3.0.0" 761 | } 762 | }, 763 | "grapheme-splitter": { 764 | "version": "1.0.4", 765 | "resolved": "https://registry.npmjs.org/grapheme-splitter/-/grapheme-splitter-1.0.4.tgz", 766 | "integrity": "sha512-bzh50DW9kTPM00T8y4o8vQg89Di9oLJVLW/KaOGIXJWP/iqCN6WKYkbNOF04vFLJhwcpYUh9ydh/+5vpOqV4YQ==", 767 | "dev": true 768 | }, 769 | "has": { 770 | "version": "1.0.3", 771 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", 772 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", 773 | "dev": true, 774 | "requires": { 775 | "function-bind": "^1.1.1" 776 | } 777 | }, 778 | "has-bigints": { 779 | "version": "1.0.2", 780 | "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", 781 | "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", 782 | "dev": true 783 | }, 784 | "has-flag": { 785 | "version": "4.0.0", 786 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", 787 | "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", 788 | "dev": true 789 | }, 790 | "has-property-descriptors": { 791 | "version": "1.0.0", 792 | "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", 793 | "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", 794 | "dev": true, 795 | "requires": { 796 | "get-intrinsic": "^1.1.1" 797 | } 798 | }, 799 | "has-symbols": { 800 | "version": "1.0.3", 801 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", 802 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", 803 | "dev": true 804 | }, 805 | "has-tostringtag": { 806 | "version": "1.0.0", 807 | "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", 808 | "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", 809 | "dev": true, 810 | "requires": { 811 | "has-symbols": "^1.0.2" 812 | } 813 | }, 814 | "ignore": { 815 | "version": "5.2.0", 816 | "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.0.tgz", 817 | "integrity": "sha512-CmxgYGiEPCLhfLnpPp1MoRmifwEIOgjcHXxOBjv7mY96c+eWScsOP9c112ZyLdWHi0FxHjI+4uVhKYp/gcdRmQ==", 818 | "dev": true 819 | }, 820 | "import-fresh": { 821 | "version": "3.3.0", 822 | "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", 823 | "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", 824 | "dev": true, 825 | "requires": { 826 | "parent-module": "^1.0.0", 827 | "resolve-from": "^4.0.0" 828 | } 829 | }, 830 | "imurmurhash": { 831 | "version": "0.1.4", 832 | "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", 833 | "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", 834 | "dev": true 835 | }, 836 | "inflight": { 837 | "version": "1.0.6", 838 | "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", 839 | "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", 840 | "dev": true, 841 | "requires": { 842 | "once": "^1.3.0", 843 | "wrappy": "1" 844 | } 845 | }, 846 | "inherits": { 847 | "version": "2.0.4", 848 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", 849 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", 850 | "dev": true 851 | }, 852 | "internal-slot": { 853 | "version": "1.0.3", 854 | "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.3.tgz", 855 | "integrity": "sha512-O0DB1JC/sPyZl7cIo78n5dR7eUSwwpYPiXRhTzNxZVAMUuB8vlnRFyLxdrVToks6XPLVnFfbzaVd5WLjhgg+vA==", 856 | "dev": true, 857 | "requires": { 858 | "get-intrinsic": "^1.1.0", 859 | "has": "^1.0.3", 860 | "side-channel": "^1.0.4" 861 | } 862 | }, 863 | "is-bigint": { 864 | "version": "1.0.4", 865 | "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", 866 | "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", 867 | "dev": true, 868 | "requires": { 869 | "has-bigints": "^1.0.1" 870 | } 871 | }, 872 | "is-boolean-object": { 873 | "version": "1.1.2", 874 | "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", 875 | "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", 876 | "dev": true, 877 | "requires": { 878 | "call-bind": "^1.0.2", 879 | "has-tostringtag": "^1.0.0" 880 | } 881 | }, 882 | "is-callable": { 883 | "version": "1.2.4", 884 | "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.4.tgz", 885 | "integrity": "sha512-nsuwtxZfMX67Oryl9LCQ+upnC0Z0BgpwntpS89m1H/TLF0zNfzfLMV/9Wa/6MZsj0acpEjAO0KF1xT6ZdLl95w==", 886 | "dev": true 887 | }, 888 | "is-core-module": { 889 | "version": "2.10.0", 890 | "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.10.0.tgz", 891 | "integrity": "sha512-Erxj2n/LDAZ7H8WNJXd9tw38GYM3dv8rk8Zcs+jJuxYTW7sozH+SS8NtrSjVL1/vpLvWi1hxy96IzjJ3EHTJJg==", 892 | "dev": true, 893 | "requires": { 894 | "has": "^1.0.3" 895 | } 896 | }, 897 | "is-date-object": { 898 | "version": "1.0.5", 899 | "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", 900 | "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", 901 | "dev": true, 902 | "requires": { 903 | "has-tostringtag": "^1.0.0" 904 | } 905 | }, 906 | "is-extglob": { 907 | "version": "2.1.1", 908 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", 909 | "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", 910 | "dev": true 911 | }, 912 | "is-glob": { 913 | "version": "4.0.3", 914 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", 915 | "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", 916 | "dev": true, 917 | "requires": { 918 | "is-extglob": "^2.1.1" 919 | } 920 | }, 921 | "is-negative-zero": { 922 | "version": "2.0.2", 923 | "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", 924 | "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", 925 | "dev": true 926 | }, 927 | "is-number": { 928 | "version": "7.0.0", 929 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", 930 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", 931 | "dev": true 932 | }, 933 | "is-number-object": { 934 | "version": "1.0.7", 935 | "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", 936 | "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", 937 | "dev": true, 938 | "requires": { 939 | "has-tostringtag": "^1.0.0" 940 | } 941 | }, 942 | "is-regex": { 943 | "version": "1.1.4", 944 | "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", 945 | "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", 946 | "dev": true, 947 | "requires": { 948 | "call-bind": "^1.0.2", 949 | "has-tostringtag": "^1.0.0" 950 | } 951 | }, 952 | "is-shared-array-buffer": { 953 | "version": "1.0.2", 954 | "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", 955 | "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", 956 | "dev": true, 957 | "requires": { 958 | "call-bind": "^1.0.2" 959 | } 960 | }, 961 | "is-string": { 962 | "version": "1.0.7", 963 | "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", 964 | "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", 965 | "dev": true, 966 | "requires": { 967 | "has-tostringtag": "^1.0.0" 968 | } 969 | }, 970 | "is-symbol": { 971 | "version": "1.0.4", 972 | "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", 973 | "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", 974 | "dev": true, 975 | "requires": { 976 | "has-symbols": "^1.0.2" 977 | } 978 | }, 979 | "is-weakref": { 980 | "version": "1.0.2", 981 | "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", 982 | "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", 983 | "dev": true, 984 | "requires": { 985 | "call-bind": "^1.0.2" 986 | } 987 | }, 988 | "isexe": { 989 | "version": "2.0.0", 990 | "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", 991 | "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", 992 | "dev": true 993 | }, 994 | "js-yaml": { 995 | "version": "4.1.0", 996 | "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", 997 | "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", 998 | "dev": true, 999 | "requires": { 1000 | "argparse": "^2.0.1" 1001 | } 1002 | }, 1003 | "json-schema-traverse": { 1004 | "version": "0.4.1", 1005 | "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", 1006 | "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", 1007 | "dev": true 1008 | }, 1009 | "json-stable-stringify-without-jsonify": { 1010 | "version": "1.0.1", 1011 | "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", 1012 | "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", 1013 | "dev": true 1014 | }, 1015 | "json5": { 1016 | "version": "1.0.1", 1017 | "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", 1018 | "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", 1019 | "dev": true, 1020 | "requires": { 1021 | "minimist": "^1.2.0" 1022 | } 1023 | }, 1024 | "levn": { 1025 | "version": "0.4.1", 1026 | "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", 1027 | "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", 1028 | "dev": true, 1029 | "requires": { 1030 | "prelude-ls": "^1.2.1", 1031 | "type-check": "~0.4.0" 1032 | } 1033 | }, 1034 | "locate-path": { 1035 | "version": "6.0.0", 1036 | "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", 1037 | "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", 1038 | "dev": true, 1039 | "requires": { 1040 | "p-locate": "^5.0.0" 1041 | } 1042 | }, 1043 | "lodash.merge": { 1044 | "version": "4.6.2", 1045 | "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", 1046 | "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", 1047 | "dev": true 1048 | }, 1049 | "merge2": { 1050 | "version": "1.4.1", 1051 | "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", 1052 | "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", 1053 | "dev": true 1054 | }, 1055 | "micromatch": { 1056 | "version": "4.0.5", 1057 | "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", 1058 | "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", 1059 | "dev": true, 1060 | "requires": { 1061 | "braces": "^3.0.2", 1062 | "picomatch": "^2.3.1" 1063 | } 1064 | }, 1065 | "minimatch": { 1066 | "version": "3.1.2", 1067 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", 1068 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", 1069 | "dev": true, 1070 | "requires": { 1071 | "brace-expansion": "^1.1.7" 1072 | } 1073 | }, 1074 | "minimist": { 1075 | "version": "1.2.6", 1076 | "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", 1077 | "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==", 1078 | "dev": true 1079 | }, 1080 | "ms": { 1081 | "version": "2.1.2", 1082 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", 1083 | "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", 1084 | "dev": true 1085 | }, 1086 | "natural-compare": { 1087 | "version": "1.4.0", 1088 | "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", 1089 | "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", 1090 | "dev": true 1091 | }, 1092 | "object-inspect": { 1093 | "version": "1.12.2", 1094 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.2.tgz", 1095 | "integrity": "sha512-z+cPxW0QGUp0mcqcsgQyLVRDoXFQbXOwBaqyF7VIgI4TWNQsDHrBpUQslRmIfAoYWdYzs6UlKJtB2XJpTaNSpQ==", 1096 | "dev": true 1097 | }, 1098 | "object-keys": { 1099 | "version": "1.1.1", 1100 | "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", 1101 | "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", 1102 | "dev": true 1103 | }, 1104 | "object.assign": { 1105 | "version": "4.1.3", 1106 | "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.3.tgz", 1107 | "integrity": "sha512-ZFJnX3zltyjcYJL0RoCJuzb+11zWGyaDbjgxZbdV7rFEcHQuYxrZqhow67aA7xpes6LhojyFDaBKAFfogQrikA==", 1108 | "dev": true, 1109 | "requires": { 1110 | "call-bind": "^1.0.2", 1111 | "define-properties": "^1.1.4", 1112 | "has-symbols": "^1.0.3", 1113 | "object-keys": "^1.1.1" 1114 | } 1115 | }, 1116 | "object.entries": { 1117 | "version": "1.1.5", 1118 | "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.5.tgz", 1119 | "integrity": "sha512-TyxmjUoZggd4OrrU1W66FMDG6CuqJxsFvymeyXI51+vQLN67zYfZseptRge703kKQdo4uccgAKebXFcRCzk4+g==", 1120 | "dev": true, 1121 | "requires": { 1122 | "call-bind": "^1.0.2", 1123 | "define-properties": "^1.1.3", 1124 | "es-abstract": "^1.19.1" 1125 | } 1126 | }, 1127 | "object.values": { 1128 | "version": "1.1.5", 1129 | "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.5.tgz", 1130 | "integrity": "sha512-QUZRW0ilQ3PnPpbNtgdNV1PDbEqLIiSFB3l+EnGtBQ/8SUTLj1PZwtQHABZtLgwpJZTSZhuGLOGk57Drx2IvYg==", 1131 | "dev": true, 1132 | "requires": { 1133 | "call-bind": "^1.0.2", 1134 | "define-properties": "^1.1.3", 1135 | "es-abstract": "^1.19.1" 1136 | } 1137 | }, 1138 | "once": { 1139 | "version": "1.4.0", 1140 | "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", 1141 | "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", 1142 | "dev": true, 1143 | "requires": { 1144 | "wrappy": "1" 1145 | } 1146 | }, 1147 | "optionator": { 1148 | "version": "0.9.1", 1149 | "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.1.tgz", 1150 | "integrity": "sha512-74RlY5FCnhq4jRxVUPKDaRwrVNXMqsGsiW6AJw4XK8hmtm10wC0ypZBLw5IIp85NZMr91+qd1RvvENwg7jjRFw==", 1151 | "dev": true, 1152 | "requires": { 1153 | "deep-is": "^0.1.3", 1154 | "fast-levenshtein": "^2.0.6", 1155 | "levn": "^0.4.1", 1156 | "prelude-ls": "^1.2.1", 1157 | "type-check": "^0.4.0", 1158 | "word-wrap": "^1.2.3" 1159 | } 1160 | }, 1161 | "p-limit": { 1162 | "version": "3.1.0", 1163 | "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", 1164 | "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", 1165 | "dev": true, 1166 | "requires": { 1167 | "yocto-queue": "^0.1.0" 1168 | } 1169 | }, 1170 | "p-locate": { 1171 | "version": "5.0.0", 1172 | "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", 1173 | "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", 1174 | "dev": true, 1175 | "requires": { 1176 | "p-limit": "^3.0.2" 1177 | } 1178 | }, 1179 | "parent-module": { 1180 | "version": "1.0.1", 1181 | "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", 1182 | "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", 1183 | "dev": true, 1184 | "requires": { 1185 | "callsites": "^3.0.0" 1186 | } 1187 | }, 1188 | "path-exists": { 1189 | "version": "4.0.0", 1190 | "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", 1191 | "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", 1192 | "dev": true 1193 | }, 1194 | "path-is-absolute": { 1195 | "version": "1.0.1", 1196 | "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", 1197 | "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", 1198 | "dev": true 1199 | }, 1200 | "path-key": { 1201 | "version": "3.1.1", 1202 | "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", 1203 | "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", 1204 | "dev": true 1205 | }, 1206 | "path-parse": { 1207 | "version": "1.0.7", 1208 | "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", 1209 | "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", 1210 | "dev": true 1211 | }, 1212 | "path-type": { 1213 | "version": "4.0.0", 1214 | "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", 1215 | "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", 1216 | "dev": true 1217 | }, 1218 | "picomatch": { 1219 | "version": "2.3.1", 1220 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", 1221 | "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", 1222 | "dev": true 1223 | }, 1224 | "prelude-ls": { 1225 | "version": "1.2.1", 1226 | "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", 1227 | "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", 1228 | "dev": true 1229 | }, 1230 | "punycode": { 1231 | "version": "2.1.1", 1232 | "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", 1233 | "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", 1234 | "dev": true 1235 | }, 1236 | "queue-microtask": { 1237 | "version": "1.2.3", 1238 | "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", 1239 | "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", 1240 | "dev": true 1241 | }, 1242 | "regexp.prototype.flags": { 1243 | "version": "1.4.3", 1244 | "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.4.3.tgz", 1245 | "integrity": "sha512-fjggEOO3slI6Wvgjwflkc4NFRCTZAu5CnNfBd5qOMYhWdn67nJBBu34/TkD++eeFmd8C9r9jfXJ27+nSiRkSUA==", 1246 | "dev": true, 1247 | "requires": { 1248 | "call-bind": "^1.0.2", 1249 | "define-properties": "^1.1.3", 1250 | "functions-have-names": "^1.2.2" 1251 | } 1252 | }, 1253 | "regexpp": { 1254 | "version": "3.2.0", 1255 | "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-3.2.0.tgz", 1256 | "integrity": "sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==", 1257 | "dev": true 1258 | }, 1259 | "resolve": { 1260 | "version": "1.22.1", 1261 | "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.1.tgz", 1262 | "integrity": "sha512-nBpuuYuY5jFsli/JIs1oldw6fOQCBioohqWZg/2hiaOybXOft4lonv85uDOKXdf8rhyK159cxU5cDcK/NKk8zw==", 1263 | "dev": true, 1264 | "requires": { 1265 | "is-core-module": "^2.9.0", 1266 | "path-parse": "^1.0.7", 1267 | "supports-preserve-symlinks-flag": "^1.0.0" 1268 | } 1269 | }, 1270 | "resolve-from": { 1271 | "version": "4.0.0", 1272 | "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", 1273 | "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", 1274 | "dev": true 1275 | }, 1276 | "reusify": { 1277 | "version": "1.0.4", 1278 | "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", 1279 | "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", 1280 | "dev": true 1281 | }, 1282 | "rimraf": { 1283 | "version": "3.0.2", 1284 | "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", 1285 | "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", 1286 | "dev": true, 1287 | "requires": { 1288 | "glob": "^7.1.3" 1289 | } 1290 | }, 1291 | "run-parallel": { 1292 | "version": "1.2.0", 1293 | "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", 1294 | "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", 1295 | "dev": true, 1296 | "requires": { 1297 | "queue-microtask": "^1.2.2" 1298 | } 1299 | }, 1300 | "semver": { 1301 | "version": "6.3.0", 1302 | "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", 1303 | "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", 1304 | "dev": true 1305 | }, 1306 | "shebang-command": { 1307 | "version": "2.0.0", 1308 | "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", 1309 | "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", 1310 | "dev": true, 1311 | "requires": { 1312 | "shebang-regex": "^3.0.0" 1313 | } 1314 | }, 1315 | "shebang-regex": { 1316 | "version": "3.0.0", 1317 | "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", 1318 | "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", 1319 | "dev": true 1320 | }, 1321 | "side-channel": { 1322 | "version": "1.0.4", 1323 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", 1324 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", 1325 | "dev": true, 1326 | "requires": { 1327 | "call-bind": "^1.0.0", 1328 | "get-intrinsic": "^1.0.2", 1329 | "object-inspect": "^1.9.0" 1330 | } 1331 | }, 1332 | "slash": { 1333 | "version": "3.0.0", 1334 | "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", 1335 | "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", 1336 | "dev": true 1337 | }, 1338 | "string.prototype.trimend": { 1339 | "version": "1.0.5", 1340 | "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.5.tgz", 1341 | "integrity": "sha512-I7RGvmjV4pJ7O3kdf+LXFpVfdNOxtCW/2C8f6jNiW4+PQchwxkCDzlk1/7p+Wl4bqFIZeF47qAHXLuHHWKAxog==", 1342 | "dev": true, 1343 | "requires": { 1344 | "call-bind": "^1.0.2", 1345 | "define-properties": "^1.1.4", 1346 | "es-abstract": "^1.19.5" 1347 | } 1348 | }, 1349 | "string.prototype.trimstart": { 1350 | "version": "1.0.5", 1351 | "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.5.tgz", 1352 | "integrity": "sha512-THx16TJCGlsN0o6dl2o6ncWUsdgnLRSA23rRE5pyGBw/mLr3Ej/R2LaqCtgP8VNMGZsvMWnf9ooZPyY2bHvUFg==", 1353 | "dev": true, 1354 | "requires": { 1355 | "call-bind": "^1.0.2", 1356 | "define-properties": "^1.1.4", 1357 | "es-abstract": "^1.19.5" 1358 | } 1359 | }, 1360 | "strip-ansi": { 1361 | "version": "6.0.1", 1362 | "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", 1363 | "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", 1364 | "dev": true, 1365 | "requires": { 1366 | "ansi-regex": "^5.0.1" 1367 | } 1368 | }, 1369 | "strip-bom": { 1370 | "version": "3.0.0", 1371 | "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", 1372 | "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", 1373 | "dev": true 1374 | }, 1375 | "strip-json-comments": { 1376 | "version": "3.1.1", 1377 | "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", 1378 | "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", 1379 | "dev": true 1380 | }, 1381 | "supports-color": { 1382 | "version": "7.2.0", 1383 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", 1384 | "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", 1385 | "dev": true, 1386 | "requires": { 1387 | "has-flag": "^4.0.0" 1388 | } 1389 | }, 1390 | "supports-preserve-symlinks-flag": { 1391 | "version": "1.0.0", 1392 | "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", 1393 | "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", 1394 | "dev": true 1395 | }, 1396 | "text-table": { 1397 | "version": "0.2.0", 1398 | "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", 1399 | "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", 1400 | "dev": true 1401 | }, 1402 | "to-regex-range": { 1403 | "version": "5.0.1", 1404 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", 1405 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", 1406 | "dev": true, 1407 | "requires": { 1408 | "is-number": "^7.0.0" 1409 | } 1410 | }, 1411 | "tsconfig-paths": { 1412 | "version": "3.14.1", 1413 | "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.1.tgz", 1414 | "integrity": "sha512-fxDhWnFSLt3VuTwtvJt5fpwxBHg5AdKWMsgcPOOIilyjymcYVZoCQF8fvFRezCNfblEXmi+PcM1eYHeOAgXCOQ==", 1415 | "dev": true, 1416 | "requires": { 1417 | "@types/json5": "^0.0.29", 1418 | "json5": "^1.0.1", 1419 | "minimist": "^1.2.6", 1420 | "strip-bom": "^3.0.0" 1421 | } 1422 | }, 1423 | "type-check": { 1424 | "version": "0.4.0", 1425 | "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", 1426 | "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", 1427 | "dev": true, 1428 | "requires": { 1429 | "prelude-ls": "^1.2.1" 1430 | } 1431 | }, 1432 | "type-fest": { 1433 | "version": "0.20.2", 1434 | "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", 1435 | "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", 1436 | "dev": true 1437 | }, 1438 | "unbox-primitive": { 1439 | "version": "1.0.2", 1440 | "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", 1441 | "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", 1442 | "dev": true, 1443 | "requires": { 1444 | "call-bind": "^1.0.2", 1445 | "has-bigints": "^1.0.2", 1446 | "has-symbols": "^1.0.3", 1447 | "which-boxed-primitive": "^1.0.2" 1448 | } 1449 | }, 1450 | "uri-js": { 1451 | "version": "4.4.1", 1452 | "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", 1453 | "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", 1454 | "dev": true, 1455 | "requires": { 1456 | "punycode": "^2.1.0" 1457 | } 1458 | }, 1459 | "v8-compile-cache": { 1460 | "version": "2.3.0", 1461 | "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.3.0.tgz", 1462 | "integrity": "sha512-l8lCEmLcLYZh4nbunNZvQCJc5pv7+RCwa8q/LdUx8u7lsWvPDKmpodJAJNwkAhJC//dFY48KuIEmjtd4RViDrA==", 1463 | "dev": true 1464 | }, 1465 | "which": { 1466 | "version": "2.0.2", 1467 | "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", 1468 | "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", 1469 | "dev": true, 1470 | "requires": { 1471 | "isexe": "^2.0.0" 1472 | } 1473 | }, 1474 | "which-boxed-primitive": { 1475 | "version": "1.0.2", 1476 | "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", 1477 | "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", 1478 | "dev": true, 1479 | "requires": { 1480 | "is-bigint": "^1.0.1", 1481 | "is-boolean-object": "^1.1.0", 1482 | "is-number-object": "^1.0.4", 1483 | "is-string": "^1.0.5", 1484 | "is-symbol": "^1.0.3" 1485 | } 1486 | }, 1487 | "word-wrap": { 1488 | "version": "1.2.3", 1489 | "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.3.tgz", 1490 | "integrity": "sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ==", 1491 | "dev": true 1492 | }, 1493 | "wrappy": { 1494 | "version": "1.0.2", 1495 | "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", 1496 | "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", 1497 | "dev": true 1498 | }, 1499 | "yocto-queue": { 1500 | "version": "0.1.0", 1501 | "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", 1502 | "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", 1503 | "dev": true 1504 | } 1505 | } 1506 | } 1507 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "javascript-documentation", 3 | "version": "1.0.0", 4 | "description": "", 5 | "main": "index.js", 6 | "scripts": { 7 | "test": "echo \"Error: no test specified\" && exit 1" 8 | }, 9 | "repository": { 10 | "type": "git", 11 | "url": "git+https://github.com/anisul-Islam/javascript-documentation.git" 12 | }, 13 | "keywords": [], 14 | "author": "", 15 | "license": "ISC", 16 | "bugs": { 17 | "url": "https://github.com/anisul-Islam/javascript-documentation/issues" 18 | }, 19 | "homepage": "https://github.com/anisul-Islam/javascript-documentation#readme", 20 | "devDependencies": { 21 | "eslint": "^8.21.0", 22 | "eslint-config-airbnb-base": "^15.0.0", 23 | "eslint-plugin-import": "^2.26.0" 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- 1 | .container { 2 | background-color: bisque; 3 | max-width: 80rem; 4 | width: 100%; 5 | margin: 0 auto; 6 | display: flex; 7 | height: 5rem; 8 | } 9 | 10 | .red { 11 | background-color: red; 12 | flex: 1; 13 | display: flex; 14 | justify-content: center; 15 | align-items: center; 16 | } 17 | .green { 18 | background-color: green; 19 | flex: 1; 20 | display: flex; 21 | justify-content: center; 22 | align-items: center; 23 | } 24 | .blue { 25 | background-color: blue; 26 | flex: 1; 27 | display: flex; 28 | justify-content: center; 29 | align-items: center; 30 | } 31 | -------------------------------------------------------------------------------- /test.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anisul-Islam/javascript-documentation/54629060bf90abba9969a24af5fee0209588a736/test.css -------------------------------------------------------------------------------- /test.excalidraw: -------------------------------------------------------------------------------- 1 | { 2 | "type": "excalidraw", 3 | "version": 2, 4 | "source": "https://marketplace.visualstudio.com/items?itemName=pomdtr.excalidraw-editor", 5 | "elements": [ 6 | { 7 | "id": "4K-r-drYsWoS8mrTg9Gd3", 8 | "type": "rectangle", 9 | "x": 631.5750122070312, 10 | "y": 278.41876220703125, 11 | "width": 1044.4500122070312, 12 | "height": 737.8687744140625, 13 | "angle": 0, 14 | "strokeColor": "#1e1e1e", 15 | "backgroundColor": "transparent", 16 | "fillStyle": "solid", 17 | "strokeWidth": 2, 18 | "strokeStyle": "solid", 19 | "roughness": 1, 20 | "opacity": 100, 21 | "groupIds": [], 22 | "frameId": null, 23 | "roundness": { 24 | "type": 3 25 | }, 26 | "seed": 7058340, 27 | "version": 123, 28 | "versionNonce": 362530204, 29 | "isDeleted": false, 30 | "boundElements": null, 31 | "updated": 1718261561554, 32 | "link": null, 33 | "locked": false 34 | }, 35 | { 36 | "id": "Eqg_iknFZHaq7dXn1_TRe", 37 | "type": "text", 38 | "x": 1005.6312255859375, 39 | "y": 203.5374969482422, 40 | "width": 326.126953125, 41 | "height": 41.4, 42 | "angle": 0, 43 | "strokeColor": "#1e1e1e", 44 | "backgroundColor": "transparent", 45 | "fillStyle": "solid", 46 | "strokeWidth": 2, 47 | "strokeStyle": "solid", 48 | "roughness": 1, 49 | "opacity": 100, 50 | "groupIds": [], 51 | "frameId": null, 52 | "roundness": null, 53 | "seed": 571195044, 54 | "version": 66, 55 | "versionNonce": 1998713380, 56 | "isDeleted": false, 57 | "boundElements": null, 58 | "updated": 1718261561554, 59 | "link": null, 60 | "locked": false, 61 | "text": "Javascript Runtimne", 62 | "fontSize": 36, 63 | "fontFamily": 2, 64 | "textAlign": "left", 65 | "verticalAlign": "top", 66 | "baseline": 32, 67 | "containerId": null, 68 | "originalText": "Javascript Runtimne", 69 | "lineHeight": 1.15 70 | }, 71 | { 72 | "id": "uRI9SR81Pli6-oPUKGbfW", 73 | "type": "rectangle", 74 | "x": 718.0875244140625, 75 | "y": 338.7750244140625, 76 | "width": 332.0250244140625, 77 | "height": 360.41253662109375, 78 | "angle": 0, 79 | "strokeColor": "#1e1e1e", 80 | "backgroundColor": "transparent", 81 | "fillStyle": "solid", 82 | "strokeWidth": 2, 83 | "strokeStyle": "solid", 84 | "roughness": 1, 85 | "opacity": 100, 86 | "groupIds": [], 87 | "frameId": null, 88 | "roundness": { 89 | "type": 3 90 | }, 91 | "seed": 724194596, 92 | "version": 90, 93 | "versionNonce": 2043195932, 94 | "isDeleted": false, 95 | "boundElements": [], 96 | "updated": 1718261561554, 97 | "link": null, 98 | "locked": false 99 | }, 100 | { 101 | "id": "QUfbjmThHtLnOEr2LBv4S", 102 | "type": "text", 103 | "x": 811.6937255859375, 104 | "y": 303.4312438964844, 105 | "width": 121.365234375, 106 | "height": 32.199999999999996, 107 | "angle": 0, 108 | "strokeColor": "#1e1e1e", 109 | "backgroundColor": "transparent", 110 | "fillStyle": "solid", 111 | "strokeWidth": 2, 112 | "strokeStyle": "solid", 113 | "roughness": 1, 114 | "opacity": 100, 115 | "groupIds": [], 116 | "frameId": null, 117 | "roundness": null, 118 | "seed": 195790364, 119 | "version": 66, 120 | "versionNonce": 312741532, 121 | "isDeleted": false, 122 | "boundElements": null, 123 | "updated": 1718261561554, 124 | "link": null, 125 | "locked": false, 126 | "text": "Call stack", 127 | "fontSize": 28, 128 | "fontFamily": 2, 129 | "textAlign": "left", 130 | "verticalAlign": "top", 131 | "baseline": 25, 132 | "containerId": null, 133 | "originalText": "Call stack", 134 | "lineHeight": 1.15 135 | }, 136 | { 137 | "id": "V2xkjpIQtlMPD9Qf5-oe0", 138 | "type": "text", 139 | "x": 229.07501220703125, 140 | "y": 327.66717529296875, 141 | "width": 383.3125, 142 | "height": 18.4, 143 | "angle": 0, 144 | "strokeColor": "#1e1e1e", 145 | "backgroundColor": "transparent", 146 | "fillStyle": "solid", 147 | "strokeWidth": 2, 148 | "strokeStyle": "solid", 149 | "roughness": 1, 150 | "opacity": 100, 151 | "groupIds": [], 152 | "frameId": null, 153 | "roundness": null, 154 | "seed": 1738637724, 155 | "version": 114, 156 | "versionNonce": 1683929380, 157 | "isDeleted": false, 158 | "boundElements": null, 159 | "updated": 1718261561554, 160 | "link": null, 161 | "locked": false, 162 | "text": "The Call Stack manages the execution of our program", 163 | "fontSize": 16, 164 | "fontFamily": 2, 165 | "textAlign": "left", 166 | "verticalAlign": "top", 167 | "baseline": 14, 168 | "containerId": null, 169 | "originalText": "The Call Stack manages the execution of our program", 170 | "lineHeight": 1.15 171 | }, 172 | { 173 | "id": "-m9NMTxDq0Hf-n771zV1R", 174 | "type": "text", 175 | "x": 229.72348022460938, 176 | "y": 378.2640380859375, 177 | "width": 369.09375, 178 | "height": 55.199999999999996, 179 | "angle": 0, 180 | "strokeColor": "#1e1e1e", 181 | "backgroundColor": "transparent", 182 | "fillStyle": "solid", 183 | "strokeWidth": 2, 184 | "strokeStyle": "solid", 185 | "roughness": 1, 186 | "opacity": 100, 187 | "groupIds": [], 188 | "frameId": null, 189 | "roundness": null, 190 | "seed": 1407361308, 191 | "version": 185, 192 | "versionNonce": 551541532, 193 | "isDeleted": false, 194 | "boundElements": null, 195 | "updated": 1718261561555, 196 | "link": null, 197 | "locked": false, 198 | "text": "JavaScript is only able to handle one task at a time; \nif one task is taking too long to pop off, \nno other tasks can get handled. ", 199 | "fontSize": 16, 200 | "fontFamily": 2, 201 | "textAlign": "left", 202 | "verticalAlign": "top", 203 | "baseline": 51, 204 | "containerId": null, 205 | "originalText": "JavaScript is only able to handle one task at a time; \nif one task is taking too long to pop off, \nno other tasks can get handled. ", 206 | "lineHeight": 1.15 207 | }, 208 | { 209 | "id": "S37dIWikKXbUYkQjz73Tf", 210 | "type": "text", 211 | "x": 264.36248779296875, 212 | "y": 477.82501220703125, 213 | "width": 181.296875, 214 | "height": 257.59999999999997, 215 | "angle": 0, 216 | "strokeColor": "#1e1e1e", 217 | "backgroundColor": "transparent", 218 | "fillStyle": "solid", 219 | "strokeWidth": 2, 220 | "strokeStyle": "solid", 221 | "roughness": 1, 222 | "opacity": 100, 223 | "groupIds": [], 224 | "frameId": null, 225 | "roundness": null, 226 | "seed": 1462203292, 227 | "version": 53, 228 | "versionNonce": 2129532828, 229 | "isDeleted": false, 230 | "boundElements": null, 231 | "updated": 1718261561555, 232 | "link": null, 233 | "locked": false, 234 | "text": "console.log('Task one');\nconsole.log('Task Two');\nconsole.log('Task Three');\nfunction task3() {\n console.log('task3');\n}\nfunction task4() {\n console.log('task3');\n}\nfunction task5() {\n task4();\n console.log('task3');\n}\ntask5();", 235 | "fontSize": 16, 236 | "fontFamily": 2, 237 | "textAlign": "left", 238 | "verticalAlign": "top", 239 | "baseline": 253, 240 | "containerId": null, 241 | "originalText": "console.log('Task one');\nconsole.log('Task Two');\nconsole.log('Task Three');\nfunction task3() {\n console.log('task3');\n}\nfunction task4() {\n console.log('task3');\n}\nfunction task5() {\n task4();\n console.log('task3');\n}\ntask5();", 242 | "lineHeight": 1.15 243 | }, 244 | { 245 | "id": "tiBU8EenF1VFTgNk9C8vS", 246 | "type": "arrow", 247 | "x": 445.6219177246094, 248 | "y": 487.4812316894531, 249 | "width": 348.3515319824219, 250 | "height": 15.393798828125, 251 | "angle": 0, 252 | "strokeColor": "#1e1e1e", 253 | "backgroundColor": "transparent", 254 | "fillStyle": "solid", 255 | "strokeWidth": 2, 256 | "strokeStyle": "solid", 257 | "roughness": 1, 258 | "opacity": 100, 259 | "groupIds": [], 260 | "frameId": null, 261 | "roundness": { 262 | "type": 2 263 | }, 264 | "seed": 447570212, 265 | "version": 86, 266 | "versionNonce": 1079361572, 267 | "isDeleted": false, 268 | "boundElements": null, 269 | "updated": 1718261561555, 270 | "link": null, 271 | "locked": false, 272 | "points": [ 273 | [ 274 | 0, 275 | 0 276 | ], 277 | [ 278 | 348.3515319824219, 279 | 15.393798828125 280 | ] 281 | ], 282 | "lastCommittedPoint": null, 283 | "startBinding": null, 284 | "endBinding": { 285 | "elementId": "UQXLlevyrzjvnWg-OvC96", 286 | "focus": -0.20524669956401706, 287 | "gap": 14.55938720703125 288 | }, 289 | "startArrowhead": null, 290 | "endArrowhead": "arrow" 291 | }, 292 | { 293 | "id": "UQXLlevyrzjvnWg-OvC96", 294 | "type": "text", 295 | "x": 808.5328369140625, 296 | "y": 493.5546875, 297 | "width": 64.0390625, 298 | "height": 18.4, 299 | "angle": 0, 300 | "strokeColor": "#1e1e1e", 301 | "backgroundColor": "transparent", 302 | "fillStyle": "solid", 303 | "strokeWidth": 2, 304 | "strokeStyle": "solid", 305 | "roughness": 1, 306 | "opacity": 100, 307 | "groupIds": [], 308 | "frameId": null, 309 | "roundness": null, 310 | "seed": 1146606876, 311 | "version": 62, 312 | "versionNonce": 1761657884, 313 | "isDeleted": false, 314 | "boundElements": [ 315 | { 316 | "id": "tiBU8EenF1VFTgNk9C8vS", 317 | "type": "arrow" 318 | } 319 | ], 320 | "updated": 1718261561555, 321 | "link": null, 322 | "locked": false, 323 | "text": "Task one", 324 | "fontSize": 16, 325 | "fontFamily": 2, 326 | "textAlign": "left", 327 | "verticalAlign": "top", 328 | "baseline": 14, 329 | "containerId": null, 330 | "originalText": "Task one", 331 | "lineHeight": 1.15 332 | }, 333 | { 334 | "type": "arrow", 335 | "version": 212, 336 | "versionNonce": 930225060, 337 | "isDeleted": false, 338 | "id": "o3pYvXiN7G-EmLOniHQpp", 339 | "fillStyle": "solid", 340 | "strokeWidth": 2, 341 | "strokeStyle": "solid", 342 | "roughness": 1, 343 | "opacity": 100, 344 | "angle": 0, 345 | "x": 342.9485670492053, 346 | "y": 727.8135365831572, 347 | "strokeColor": "#1e1e1e", 348 | "backgroundColor": "transparent", 349 | "width": 443.8827819824219, 350 | "height": 68.3624267578125, 351 | "seed": 1781930908, 352 | "groupIds": [], 353 | "frameId": null, 354 | "roundness": { 355 | "type": 2 356 | }, 357 | "boundElements": [], 358 | "updated": 1718261561555, 359 | "link": null, 360 | "locked": false, 361 | "startBinding": null, 362 | "endBinding": null, 363 | "lastCommittedPoint": null, 364 | "startArrowhead": null, 365 | "endArrowhead": "arrow", 366 | "points": [ 367 | [ 368 | 0, 369 | 0 370 | ], 371 | [ 372 | 443.8827819824219, 373 | -68.3624267578125 374 | ] 375 | ] 376 | }, 377 | { 378 | "id": "K21gU5VKmHOUCvrYzuVu0", 379 | "type": "text", 380 | "x": 804, 381 | "y": 654, 382 | "width": 48.8984375, 383 | "height": 18.4, 384 | "angle": 0, 385 | "strokeColor": "#1e1e1e", 386 | "backgroundColor": "transparent", 387 | "fillStyle": "solid", 388 | "strokeWidth": 2, 389 | "strokeStyle": "solid", 390 | "roughness": 1, 391 | "opacity": 100, 392 | "groupIds": [], 393 | "frameId": null, 394 | "roundness": null, 395 | "seed": 1789942684, 396 | "version": 13, 397 | "versionNonce": 1158275228, 398 | "isDeleted": false, 399 | "boundElements": null, 400 | "updated": 1718261561555, 401 | "link": null, 402 | "locked": false, 403 | "text": "task5()", 404 | "fontSize": 16, 405 | "fontFamily": 2, 406 | "textAlign": "left", 407 | "verticalAlign": "top", 408 | "baseline": 14, 409 | "containerId": null, 410 | "originalText": "task5()", 411 | "lineHeight": 1.15 412 | }, 413 | { 414 | "type": "text", 415 | "version": 74, 416 | "versionNonce": 1366755108, 417 | "isDeleted": false, 418 | "id": "rNQZg2lZ6HGtSTr2saqgX", 419 | "fillStyle": "solid", 420 | "strokeWidth": 2, 421 | "strokeStyle": "solid", 422 | "roughness": 1, 423 | "opacity": 100, 424 | "angle": 0, 425 | "x": 802.5148315429688, 426 | "y": 619.5015991210937, 427 | "strokeColor": "#1e1e1e", 428 | "backgroundColor": "transparent", 429 | "width": 48.8984375, 430 | "height": 18.4, 431 | "seed": 213970212, 432 | "groupIds": [], 433 | "frameId": null, 434 | "roundness": null, 435 | "boundElements": [], 436 | "updated": 1718261561555, 437 | "link": null, 438 | "locked": false, 439 | "fontSize": 16, 440 | "fontFamily": 2, 441 | "text": "task4()", 442 | "textAlign": "left", 443 | "verticalAlign": "top", 444 | "containerId": null, 445 | "originalText": "task4()", 446 | "lineHeight": 1.15, 447 | "baseline": 14 448 | }, 449 | { 450 | "id": "sG8kAOBxEh28uEAksNhnN", 451 | "type": "text", 452 | "x": 798.8156127929688, 453 | "y": 589.5656127929688, 454 | "width": 140.3984375, 455 | "height": 18.4, 456 | "angle": 0, 457 | "strokeColor": "#1e1e1e", 458 | "backgroundColor": "transparent", 459 | "fillStyle": "solid", 460 | "strokeWidth": 2, 461 | "strokeStyle": "solid", 462 | "roughness": 1, 463 | "opacity": 100, 464 | "groupIds": [], 465 | "frameId": null, 466 | "roundness": null, 467 | "seed": 1951572516, 468 | "version": 44, 469 | "versionNonce": 1121092260, 470 | "isDeleted": false, 471 | "boundElements": null, 472 | "updated": 1718261561555, 473 | "link": null, 474 | "locked": false, 475 | "text": "console.log('task3');", 476 | "fontSize": 16, 477 | "fontFamily": 2, 478 | "textAlign": "left", 479 | "verticalAlign": "top", 480 | "baseline": 14, 481 | "containerId": null, 482 | "originalText": "console.log('task3');", 483 | "lineHeight": 1.15 484 | }, 485 | { 486 | "id": "8do_dPiUO5rkPd1Jcjf9v", 487 | "type": "text", 488 | "x": 273.2062683105469, 489 | "y": 1171.6015527057652, 490 | "width": 460.33203125, 491 | "height": 368, 492 | "angle": 0, 493 | "strokeColor": "#1e1e1e", 494 | "backgroundColor": "transparent", 495 | "fillStyle": "solid", 496 | "strokeWidth": 2, 497 | "strokeStyle": "solid", 498 | "roughness": 1, 499 | "opacity": 100, 500 | "groupIds": [], 501 | "frameId": null, 502 | "roundness": null, 503 | "seed": 1649277340, 504 | "version": 27, 505 | "versionNonce": 840225956, 506 | "isDeleted": false, 507 | "boundElements": null, 508 | "updated": 1718261577749, 509 | "link": null, 510 | "locked": false, 511 | "text": "console.log('Task one');\nconsole.log('Task Two');\nconsole.log('Task Three');\nfunction task3() {\n let count = 0;\n for (let index = 0; index < 10000000000; index++) {\n count++;\n }\n}\nfunction task4() {\n console.log('task4');\n}\n\ntask3();\ntask4();\n", 512 | "fontSize": 20, 513 | "fontFamily": 2, 514 | "textAlign": "left", 515 | "verticalAlign": "top", 516 | "baseline": 363, 517 | "containerId": null, 518 | "originalText": "console.log('Task one');\nconsole.log('Task Two');\nconsole.log('Task Three');\nfunction task3() {\n let count = 0;\n for (let index = 0; index < 10000000000; index++) {\n count++;\n }\n}\nfunction task4() {\n console.log('task4');\n}\n\ntask3();\ntask4();\n", 519 | "lineHeight": 1.15 520 | }, 521 | { 522 | "id": "d8tsmGei_FjBX1gzNXTFL", 523 | "type": "text", 524 | "x": 906, 525 | "y": 1303.2000146198277, 526 | "width": 471.318359375, 527 | "height": 23, 528 | "angle": 0, 529 | "strokeColor": "#1e1e1e", 530 | "backgroundColor": "transparent", 531 | "fillStyle": "solid", 532 | "strokeWidth": 2, 533 | "strokeStyle": "solid", 534 | "roughness": 1, 535 | "opacity": 100, 536 | "groupIds": [], 537 | "frameId": null, 538 | "roundness": null, 539 | "seed": 253690012, 540 | "version": 61, 541 | "versionNonce": 47741220, 542 | "isDeleted": false, 543 | "boundElements": null, 544 | "updated": 1718261605902, 545 | "link": null, 546 | "locked": false, 547 | "text": "task4() is blocked here because task3() is taking time", 548 | "fontSize": 20, 549 | "fontFamily": 2, 550 | "textAlign": "left", 551 | "verticalAlign": "top", 552 | "baseline": 18, 553 | "containerId": null, 554 | "originalText": "task4() is blocked here because task3() is taking time", 555 | "lineHeight": 1.15 556 | }, 557 | { 558 | "id": "1xXPLsAKGYOXAA8Ou_T9A", 559 | "type": "arrow", 560 | "x": 775.1625366210938, 561 | "y": 1311.618776826859, 562 | "width": 113.2640380859375, 563 | "height": 7.3125, 564 | "angle": 0, 565 | "strokeColor": "#1e1e1e", 566 | "backgroundColor": "transparent", 567 | "fillStyle": "solid", 568 | "strokeWidth": 2, 569 | "strokeStyle": "solid", 570 | "roughness": 1, 571 | "opacity": 100, 572 | "groupIds": [], 573 | "frameId": null, 574 | "roundness": { 575 | "type": 2 576 | }, 577 | "seed": 1532985380, 578 | "version": 33, 579 | "versionNonce": 1429661596, 580 | "isDeleted": false, 581 | "boundElements": null, 582 | "updated": 1718261610978, 583 | "link": null, 584 | "locked": false, 585 | "points": [ 586 | [ 587 | 0, 588 | 0 589 | ], 590 | [ 591 | 113.2640380859375, 592 | 7.3125 593 | ] 594 | ], 595 | "lastCommittedPoint": null, 596 | "startBinding": null, 597 | "endBinding": null, 598 | "startArrowhead": null, 599 | "endArrowhead": "arrow" 600 | }, 601 | { 602 | "type": "rectangle", 603 | "version": 125, 604 | "versionNonce": 963725340, 605 | "isDeleted": false, 606 | "id": "VnbTEMCChHs6TSXFe7Vlf", 607 | "fillStyle": "solid", 608 | "strokeWidth": 2, 609 | "strokeStyle": "solid", 610 | "roughness": 1, 611 | "opacity": 100, 612 | "angle": 0, 613 | "x": 518.7749938964844, 614 | "y": 1623.6656394863135, 615 | "strokeColor": "#1e1e1e", 616 | "backgroundColor": "transparent", 617 | "width": 1044.4500122070312, 618 | "height": 737.8687744140625, 619 | "seed": 363265060, 620 | "groupIds": [], 621 | "frameId": null, 622 | "roundness": { 623 | "type": 3 624 | }, 625 | "boundElements": [], 626 | "updated": 1718261721535, 627 | "link": null, 628 | "locked": false 629 | }, 630 | { 631 | "type": "rectangle", 632 | "version": 93, 633 | "versionNonce": 399666204, 634 | "isDeleted": false, 635 | "id": "jFDlxWWBAq_xsWk9qx1bV", 636 | "fillStyle": "solid", 637 | "strokeWidth": 2, 638 | "strokeStyle": "solid", 639 | "roughness": 1, 640 | "opacity": 100, 641 | "angle": 0, 642 | "x": 605.2875061035156, 643 | "y": 1683.9281516933447, 644 | "strokeColor": "#1e1e1e", 645 | "backgroundColor": "transparent", 646 | "width": 332.0250244140625, 647 | "height": 360.41253662109375, 648 | "seed": 1195104164, 649 | "groupIds": [], 650 | "frameId": null, 651 | "roundness": { 652 | "type": 3 653 | }, 654 | "boundElements": [], 655 | "updated": 1718261725512, 656 | "link": null, 657 | "locked": false 658 | }, 659 | { 660 | "type": "text", 661 | "version": 69, 662 | "versionNonce": 2070317212, 663 | "isDeleted": false, 664 | "id": "PEiQh7Y3Zw6anrA_EIPkK", 665 | "fillStyle": "solid", 666 | "strokeWidth": 2, 667 | "strokeStyle": "solid", 668 | "roughness": 1, 669 | "opacity": 100, 670 | "angle": 0, 671 | "x": 698.8937072753906, 672 | "y": 1648.5843711757666, 673 | "strokeColor": "#1e1e1e", 674 | "backgroundColor": "transparent", 675 | "width": 121.365234375, 676 | "height": 32.199999999999996, 677 | "seed": 950616868, 678 | "groupIds": [], 679 | "frameId": null, 680 | "roundness": null, 681 | "boundElements": [], 682 | "updated": 1718261725512, 683 | "link": null, 684 | "locked": false, 685 | "fontSize": 28, 686 | "fontFamily": 2, 687 | "text": "Call stack", 688 | "textAlign": "left", 689 | "verticalAlign": "top", 690 | "containerId": null, 691 | "originalText": "Call stack", 692 | "lineHeight": 1.15, 693 | "baseline": 25 694 | }, 695 | { 696 | "type": "text", 697 | "version": 64, 698 | "versionNonce": 773221788, 699 | "isDeleted": false, 700 | "id": "pl7rZa1dkhmg_rjWKnNk3", 701 | "fillStyle": "solid", 702 | "strokeWidth": 2, 703 | "strokeStyle": "solid", 704 | "roughness": 1, 705 | "opacity": 100, 706 | "angle": 0, 707 | "x": 695.7328186035156, 708 | "y": 1838.8015647792822, 709 | "strokeColor": "#1e1e1e", 710 | "backgroundColor": "transparent", 711 | "width": 64.0390625, 712 | "height": 18.4, 713 | "seed": 6110884, 714 | "groupIds": [], 715 | "frameId": null, 716 | "roundness": null, 717 | "boundElements": [], 718 | "updated": 1718261721535, 719 | "link": null, 720 | "locked": false, 721 | "fontSize": 16, 722 | "fontFamily": 2, 723 | "text": "Task one", 724 | "textAlign": "left", 725 | "verticalAlign": "top", 726 | "containerId": null, 727 | "originalText": "Task one", 728 | "lineHeight": 1.15, 729 | "baseline": 14 730 | }, 731 | { 732 | "type": "text", 733 | "version": 15, 734 | "versionNonce": 2091801116, 735 | "isDeleted": false, 736 | "id": "Jjx0M7DqKb5Ozu4thiTN9", 737 | "fillStyle": "solid", 738 | "strokeWidth": 2, 739 | "strokeStyle": "solid", 740 | "roughness": 1, 741 | "opacity": 100, 742 | "angle": 0, 743 | "x": 691.1999816894531, 744 | "y": 1999.2468772792822, 745 | "strokeColor": "#1e1e1e", 746 | "backgroundColor": "transparent", 747 | "width": 48.8984375, 748 | "height": 18.4, 749 | "seed": 923126308, 750 | "groupIds": [], 751 | "frameId": null, 752 | "roundness": null, 753 | "boundElements": [], 754 | "updated": 1718261721535, 755 | "link": null, 756 | "locked": false, 757 | "fontSize": 16, 758 | "fontFamily": 2, 759 | "text": "task5()", 760 | "textAlign": "left", 761 | "verticalAlign": "top", 762 | "containerId": null, 763 | "originalText": "task5()", 764 | "lineHeight": 1.15, 765 | "baseline": 14 766 | }, 767 | { 768 | "type": "text", 769 | "version": 76, 770 | "versionNonce": 2056566428, 771 | "isDeleted": false, 772 | "id": "CKQ5WQ0RyGmFgRZ4n6jAc", 773 | "fillStyle": "solid", 774 | "strokeWidth": 2, 775 | "strokeStyle": "solid", 776 | "roughness": 1, 777 | "opacity": 100, 778 | "angle": 0, 779 | "x": 689.7148132324219, 780 | "y": 1964.7484764003757, 781 | "strokeColor": "#1e1e1e", 782 | "backgroundColor": "transparent", 783 | "width": 48.8984375, 784 | "height": 18.4, 785 | "seed": 798025124, 786 | "groupIds": [], 787 | "frameId": null, 788 | "roundness": null, 789 | "boundElements": [], 790 | "updated": 1718261721535, 791 | "link": null, 792 | "locked": false, 793 | "fontSize": 16, 794 | "fontFamily": 2, 795 | "text": "task4()", 796 | "textAlign": "left", 797 | "verticalAlign": "top", 798 | "containerId": null, 799 | "originalText": "task4()", 800 | "lineHeight": 1.15, 801 | "baseline": 14 802 | }, 803 | { 804 | "type": "text", 805 | "version": 46, 806 | "versionNonce": 343638812, 807 | "isDeleted": false, 808 | "id": "vIjc5MKn5iunQe34DctW_", 809 | "fillStyle": "solid", 810 | "strokeWidth": 2, 811 | "strokeStyle": "solid", 812 | "roughness": 1, 813 | "opacity": 100, 814 | "angle": 0, 815 | "x": 686.0155944824219, 816 | "y": 1934.812490072251, 817 | "strokeColor": "#1e1e1e", 818 | "backgroundColor": "transparent", 819 | "width": 140.3984375, 820 | "height": 18.4, 821 | "seed": 791449892, 822 | "groupIds": [], 823 | "frameId": null, 824 | "roundness": null, 825 | "boundElements": [], 826 | "updated": 1718261721535, 827 | "link": null, 828 | "locked": false, 829 | "fontSize": 16, 830 | "fontFamily": 2, 831 | "text": "console.log('task3');", 832 | "textAlign": "left", 833 | "verticalAlign": "top", 834 | "containerId": null, 835 | "originalText": "console.log('task3');", 836 | "lineHeight": 1.15, 837 | "baseline": 14 838 | }, 839 | { 840 | "type": "rectangle", 841 | "version": 205, 842 | "versionNonce": 805285668, 843 | "isDeleted": false, 844 | "id": "v05XU9Cu3a7hFwIl3CSZQ", 845 | "fillStyle": "solid", 846 | "strokeWidth": 2, 847 | "strokeStyle": "solid", 848 | "roughness": 1, 849 | "opacity": 100, 850 | "angle": 0, 851 | "x": 1056.2186889648438, 852 | "y": 1690.453148660661, 853 | "strokeColor": "#1e1e1e", 854 | "backgroundColor": "transparent", 855 | "width": 441.590576171875, 856 | "height": 360.41253662109375, 857 | "seed": 1052665380, 858 | "groupIds": [], 859 | "frameId": null, 860 | "roundness": { 861 | "type": 3 862 | }, 863 | "boundElements": [], 864 | "updated": 1718261769875, 865 | "link": null, 866 | "locked": false 867 | }, 868 | { 869 | "type": "text", 870 | "version": 155, 871 | "versionNonce": 428080284, 872 | "isDeleted": false, 873 | "id": "0svXxEa8FFe4kBjAGCUIJ", 874 | "fillStyle": "solid", 875 | "strokeWidth": 2, 876 | "strokeStyle": "solid", 877 | "roughness": 1, 878 | "opacity": 100, 879 | "angle": 0, 880 | "x": 1149.8248901367188, 881 | "y": 1655.109368143083, 882 | "strokeColor": "#1e1e1e", 883 | "backgroundColor": "transparent", 884 | "width": 109.990234375, 885 | "height": 32.199999999999996, 886 | "seed": 1842741668, 887 | "groupIds": [], 888 | "frameId": null, 889 | "roundness": null, 890 | "boundElements": [], 891 | "updated": 1718261733767, 892 | "link": null, 893 | "locked": false, 894 | "fontSize": 28, 895 | "fontFamily": 2, 896 | "text": "Web API", 897 | "textAlign": "left", 898 | "verticalAlign": "top", 899 | "containerId": null, 900 | "originalText": "Web API", 901 | "lineHeight": 1.15, 902 | "baseline": 25 903 | }, 904 | { 905 | "id": "9r_dvBSCq3fvYhUEKoqzs", 906 | "type": "rectangle", 907 | "x": 1083.1875, 908 | "y": 1731.7500389194502, 909 | "width": 125.4937744140625, 910 | "height": 67.38751220703125, 911 | "angle": 0, 912 | "strokeColor": "#1e1e1e", 913 | "backgroundColor": "transparent", 914 | "fillStyle": "solid", 915 | "strokeWidth": 2, 916 | "strokeStyle": "solid", 917 | "roughness": 1, 918 | "opacity": 100, 919 | "groupIds": [], 920 | "frameId": null, 921 | "roundness": { 922 | "type": 3 923 | }, 924 | "seed": 86672796, 925 | "version": 72, 926 | "versionNonce": 2084875812, 927 | "isDeleted": false, 928 | "boundElements": [ 929 | { 930 | "type": "text", 931 | "id": "pXc6Wb5HSK2uIxKbExNF6" 932 | } 933 | ], 934 | "updated": 1718261754804, 935 | "link": null, 936 | "locked": false 937 | }, 938 | { 939 | "id": "pXc6Wb5HSK2uIxKbExNF6", 940 | "type": "text", 941 | "x": 1105.3582153320312, 942 | "y": 1753.9437950229658, 943 | "width": 81.15234375, 944 | "height": 23, 945 | "angle": 0, 946 | "strokeColor": "#1e1e1e", 947 | "backgroundColor": "transparent", 948 | "fillStyle": "solid", 949 | "strokeWidth": 2, 950 | "strokeStyle": "solid", 951 | "roughness": 1, 952 | "opacity": 100, 953 | "groupIds": [], 954 | "frameId": null, 955 | "roundness": null, 956 | "seed": 1503873436, 957 | "version": 28, 958 | "versionNonce": 593121316, 959 | "isDeleted": false, 960 | "boundElements": null, 961 | "updated": 1718261762819, 962 | "link": null, 963 | "locked": false, 964 | "text": "fetch API", 965 | "fontSize": 20, 966 | "fontFamily": 2, 967 | "textAlign": "center", 968 | "verticalAlign": "middle", 969 | "baseline": 18, 970 | "containerId": "9r_dvBSCq3fvYhUEKoqzs", 971 | "originalText": "fetch API", 972 | "lineHeight": 1.15 973 | }, 974 | { 975 | "type": "rectangle", 976 | "version": 95, 977 | "versionNonce": 138486556, 978 | "isDeleted": false, 979 | "id": "-yt4ICNW6UXbc8WdVyYR6", 980 | "fillStyle": "solid", 981 | "strokeWidth": 2, 982 | "strokeStyle": "solid", 983 | "roughness": 1, 984 | "opacity": 100, 985 | "angle": 0, 986 | "x": 1225.3015747070312, 987 | "y": 1726.3203514194502, 988 | "strokeColor": "#1e1e1e", 989 | "backgroundColor": "transparent", 990 | "width": 125.4937744140625, 991 | "height": 67.38751220703125, 992 | "seed": 149543324, 993 | "groupIds": [], 994 | "frameId": null, 995 | "roundness": { 996 | "type": 3 997 | }, 998 | "boundElements": [ 999 | { 1000 | "type": "text", 1001 | "id": "O4VAGUITydw0KdOZsouGJ" 1002 | } 1003 | ], 1004 | "updated": 1718261766942, 1005 | "link": null, 1006 | "locked": false 1007 | }, 1008 | { 1009 | "type": "text", 1010 | "version": 88, 1011 | "versionNonce": 1216040868, 1012 | "isDeleted": false, 1013 | "id": "O4VAGUITydw0KdOZsouGJ", 1014 | "fillStyle": "solid", 1015 | "strokeWidth": 2, 1016 | "strokeStyle": "solid", 1017 | "roughness": 1, 1018 | "opacity": 100, 1019 | "angle": 0, 1020 | "x": 1232.2916259765625, 1021 | "y": 1737.0141075229658, 1022 | "strokeColor": "#1e1e1e", 1023 | "backgroundColor": "transparent", 1024 | "width": 111.513671875, 1025 | "height": 46, 1026 | "seed": 36980252, 1027 | "groupIds": [], 1028 | "frameId": null, 1029 | "roundness": null, 1030 | "boundElements": [], 1031 | "updated": 1718261785956, 1032 | "link": null, 1033 | "locked": false, 1034 | "fontSize": 20, 1035 | "fontFamily": 2, 1036 | "text": "Timers API\nsetTimeout()", 1037 | "textAlign": "center", 1038 | "verticalAlign": "middle", 1039 | "containerId": "-yt4ICNW6UXbc8WdVyYR6", 1040 | "originalText": "Timers API\nsetTimeout()", 1041 | "lineHeight": 1.15, 1042 | "baseline": 41 1043 | }, 1044 | { 1045 | "type": "rectangle", 1046 | "version": 106, 1047 | "versionNonce": 1545594780, 1048 | "isDeleted": false, 1049 | "id": "37h7VCIBdGnsV6YxZ2zPd", 1050 | "fillStyle": "solid", 1051 | "strokeWidth": 2, 1052 | "strokeStyle": "solid", 1053 | "roughness": 1, 1054 | "opacity": 100, 1055 | "angle": 0, 1056 | "x": 1092.0311889648438, 1057 | "y": 1822.3546836948408, 1058 | "strokeColor": "#1e1e1e", 1059 | "backgroundColor": "transparent", 1060 | "width": 125.4937744140625, 1061 | "height": 67.38751220703125, 1062 | "seed": 2061811356, 1063 | "groupIds": [], 1064 | "frameId": null, 1065 | "roundness": { 1066 | "type": 3 1067 | }, 1068 | "boundElements": [ 1069 | { 1070 | "type": "text", 1071 | "id": "OvM-xHiWgHqVUQdBF2cMw" 1072 | } 1073 | ], 1074 | "updated": 1718261807261, 1075 | "link": null, 1076 | "locked": false 1077 | }, 1078 | { 1079 | "type": "text", 1080 | "version": 70, 1081 | "versionNonce": 347722532, 1082 | "isDeleted": false, 1083 | "id": "OvM-xHiWgHqVUQdBF2cMw", 1084 | "fillStyle": "solid", 1085 | "strokeWidth": 2, 1086 | "strokeStyle": "solid", 1087 | "roughness": 1, 1088 | "opacity": 100, 1089 | "angle": 0, 1090 | "x": 1101.447998046875, 1091 | "y": 1844.5484397983564, 1092 | "strokeColor": "#1e1e1e", 1093 | "backgroundColor": "transparent", 1094 | "width": 106.66015625, 1095 | "height": 23, 1096 | "seed": 495618844, 1097 | "groupIds": [], 1098 | "frameId": null, 1099 | "roundness": null, 1100 | "boundElements": [], 1101 | "updated": 1718261810433, 1102 | "link": null, 1103 | "locked": false, 1104 | "fontSize": 20, 1105 | "fontFamily": 2, 1106 | "text": "HTML DOM", 1107 | "textAlign": "center", 1108 | "verticalAlign": "middle", 1109 | "containerId": "37h7VCIBdGnsV6YxZ2zPd", 1110 | "originalText": "HTML DOM", 1111 | "lineHeight": 1.15, 1112 | "baseline": 18 1113 | }, 1114 | { 1115 | "id": "Qewj3TbqYE5AGVcpnzdDa", 1116 | "type": "rectangle", 1117 | "x": 1090.63134765625, 1118 | "y": 2133.131295022966, 1119 | "width": 440.8311767578125, 1120 | "height": 173.1187744140625, 1121 | "angle": 0, 1122 | "strokeColor": "#1e1e1e", 1123 | "backgroundColor": "transparent", 1124 | "fillStyle": "solid", 1125 | "strokeWidth": 2, 1126 | "strokeStyle": "solid", 1127 | "roughness": 1, 1128 | "opacity": 100, 1129 | "groupIds": [], 1130 | "frameId": null, 1131 | "roundness": { 1132 | "type": 3 1133 | }, 1134 | "seed": 338844196, 1135 | "version": 55, 1136 | "versionNonce": 1640699684, 1137 | "isDeleted": false, 1138 | "boundElements": null, 1139 | "updated": 1718261850622, 1140 | "link": null, 1141 | "locked": false 1142 | }, 1143 | { 1144 | "id": "9iLXJ6AfNM_5p7bbiGGdV", 1145 | "type": "text", 1146 | "x": 1295, 1147 | "y": 2116.4000328159345, 1148 | "width": 106.728515625, 1149 | "height": 23, 1150 | "angle": 0, 1151 | "strokeColor": "#1e1e1e", 1152 | "backgroundColor": "transparent", 1153 | "fillStyle": "solid", 1154 | "strokeWidth": 2, 1155 | "strokeStyle": "solid", 1156 | "roughness": 1, 1157 | "opacity": 100, 1158 | "groupIds": [], 1159 | "frameId": null, 1160 | "roundness": null, 1161 | "seed": 1535552412, 1162 | "version": 19, 1163 | "versionNonce": 1246358308, 1164 | "isDeleted": false, 1165 | "boundElements": null, 1166 | "updated": 1718261860221, 1167 | "link": null, 1168 | "locked": false, 1169 | "text": "Task Queue", 1170 | "fontSize": 20, 1171 | "fontFamily": 2, 1172 | "textAlign": "left", 1173 | "verticalAlign": "top", 1174 | "baseline": 18, 1175 | "containerId": null, 1176 | "originalText": "Task Queue", 1177 | "lineHeight": 1.15 1178 | }, 1179 | { 1180 | "id": "l9Cef4Ygrz4yN5LalzRh0", 1181 | "type": "rectangle", 1182 | "x": 707.3859252929688, 1183 | "y": 2109.2625816440595, 1184 | "width": 122.74688720703124, 1185 | "height": 212.05316162109375, 1186 | "angle": 0, 1187 | "strokeColor": "#1e1e1e", 1188 | "backgroundColor": "transparent", 1189 | "fillStyle": "solid", 1190 | "strokeWidth": 2, 1191 | "strokeStyle": "solid", 1192 | "roughness": 1, 1193 | "opacity": 100, 1194 | "groupIds": [], 1195 | "frameId": null, 1196 | "roundness": { 1197 | "type": 3 1198 | }, 1199 | "seed": 110916132, 1200 | "version": 168, 1201 | "versionNonce": 39984284, 1202 | "isDeleted": false, 1203 | "boundElements": null, 1204 | "updated": 1718261956606, 1205 | "link": null, 1206 | "locked": false 1207 | }, 1208 | { 1209 | "id": "PsfixNJ62JaMwJD2pZMpu", 1210 | "type": "text", 1211 | "x": 715, 1212 | "y": 2128.4000328159345, 1213 | "width": 101.19140625, 1214 | "height": 23, 1215 | "angle": 0, 1216 | "strokeColor": "#1e1e1e", 1217 | "backgroundColor": "transparent", 1218 | "fillStyle": "solid", 1219 | "strokeWidth": 2, 1220 | "strokeStyle": "solid", 1221 | "roughness": 1, 1222 | "opacity": 100, 1223 | "groupIds": [], 1224 | "frameId": null, 1225 | "roundness": null, 1226 | "seed": 1777170204, 1227 | "version": 16, 1228 | "versionNonce": 1644991780, 1229 | "isDeleted": false, 1230 | "boundElements": null, 1231 | "updated": 1718261951987, 1232 | "link": null, 1233 | "locked": false, 1234 | "text": "Event Loop", 1235 | "fontSize": 20, 1236 | "fontFamily": 2, 1237 | "textAlign": "left", 1238 | "verticalAlign": "top", 1239 | "baseline": 18, 1240 | "containerId": null, 1241 | "originalText": "Event Loop", 1242 | "lineHeight": 1.15 1243 | }, 1244 | { 1245 | "id": "bk2nsUg5tJYZlwB2jwFQt", 1246 | "type": "text", 1247 | "x": 824.9140380001068, 1248 | "y": 3155.454760475162, 1249 | "width": 306.10546875, 1250 | "height": 41.4, 1251 | "angle": 0, 1252 | "strokeColor": "#1e1e1e", 1253 | "backgroundColor": "transparent", 1254 | "fillStyle": "solid", 1255 | "strokeWidth": 2, 1256 | "strokeStyle": "solid", 1257 | "roughness": 1, 1258 | "opacity": 100, 1259 | "groupIds": [], 1260 | "frameId": null, 1261 | "roundness": null, 1262 | "seed": 107993380, 1263 | "version": 44, 1264 | "versionNonce": 826984356, 1265 | "isDeleted": false, 1266 | "boundElements": null, 1267 | "updated": 1718447615189, 1268 | "link": null, 1269 | "locked": false, 1270 | "text": "HTML Course Plan", 1271 | "fontSize": 36, 1272 | "fontFamily": 2, 1273 | "textAlign": "left", 1274 | "verticalAlign": "top", 1275 | "baseline": 32, 1276 | "containerId": null, 1277 | "originalText": "HTML Course Plan", 1278 | "lineHeight": 1.15 1279 | }, 1280 | { 1281 | "id": "FdazdtkUEfsdYxCS6oNDs", 1282 | "type": "arrow", 1283 | "x": 964.031286535263, 1284 | "y": 3196.350088233951, 1285 | "width": 2.5406494140625, 1286 | "height": 101.09530639648438, 1287 | "angle": 0, 1288 | "strokeColor": "#1e1e1e", 1289 | "backgroundColor": "transparent", 1290 | "fillStyle": "solid", 1291 | "strokeWidth": 2, 1292 | "strokeStyle": "solid", 1293 | "roughness": 1, 1294 | "opacity": 100, 1295 | "groupIds": [], 1296 | "frameId": null, 1297 | "roundness": { 1298 | "type": 2 1299 | }, 1300 | "seed": 124792484, 1301 | "version": 108, 1302 | "versionNonce": 445061788, 1303 | "isDeleted": false, 1304 | "boundElements": null, 1305 | "updated": 1718447624684, 1306 | "link": null, 1307 | "locked": false, 1308 | "points": [ 1309 | [ 1310 | 0, 1311 | 0 1312 | ], 1313 | [ 1314 | 2.5406494140625, 1315 | 101.09530639648438 1316 | ] 1317 | ], 1318 | "lastCommittedPoint": null, 1319 | "startBinding": null, 1320 | "endBinding": null, 1321 | "startArrowhead": null, 1322 | "endArrowhead": "arrow" 1323 | }, 1324 | { 1325 | "id": "GvvxCchej6oBPWVlgtzdl", 1326 | "type": "line", 1327 | "x": 277.27969962120056, 1328 | "y": 3308.320394630435, 1329 | "width": 1427.4750366210938, 1330 | "height": 10.185943603515625, 1331 | "angle": 0, 1332 | "strokeColor": "#1e1e1e", 1333 | "backgroundColor": "transparent", 1334 | "fillStyle": "solid", 1335 | "strokeWidth": 2, 1336 | "strokeStyle": "solid", 1337 | "roughness": 1, 1338 | "opacity": 100, 1339 | "groupIds": [], 1340 | "frameId": null, 1341 | "roundness": { 1342 | "type": 2 1343 | }, 1344 | "seed": 1350657820, 1345 | "version": 148, 1346 | "versionNonce": 1359852324, 1347 | "isDeleted": false, 1348 | "boundElements": null, 1349 | "updated": 1718447632975, 1350 | "link": null, 1351 | "locked": false, 1352 | "points": [ 1353 | [ 1354 | 0, 1355 | 0 1356 | ], 1357 | [ 1358 | 1427.4750366210938, 1359 | -10.185943603515625 1360 | ] 1361 | ], 1362 | "lastCommittedPoint": null, 1363 | "startBinding": null, 1364 | "endBinding": null, 1365 | "startArrowhead": null, 1366 | "endArrowhead": null 1367 | }, 1368 | { 1369 | "id": "uOgA275AxD-AIkkgPj5zS", 1370 | "type": "arrow", 1371 | "x": 277.6125243282318, 1372 | "y": 3311.343832130435, 1373 | "width": 7.738305999936472, 1374 | "height": 84.87188720703125, 1375 | "angle": 0, 1376 | "strokeColor": "#1e1e1e", 1377 | "backgroundColor": "transparent", 1378 | "fillStyle": "solid", 1379 | "strokeWidth": 2, 1380 | "strokeStyle": "solid", 1381 | "roughness": 1, 1382 | "opacity": 100, 1383 | "groupIds": [], 1384 | "frameId": null, 1385 | "roundness": { 1386 | "type": 2 1387 | }, 1388 | "seed": 111082908, 1389 | "version": 98, 1390 | "versionNonce": 1038288036, 1391 | "isDeleted": false, 1392 | "boundElements": null, 1393 | "updated": 1718447723286, 1394 | "link": null, 1395 | "locked": false, 1396 | "points": [ 1397 | [ 1398 | 0, 1399 | 0 1400 | ], 1401 | [ 1402 | 7.738305999936472, 1403 | 84.87188720703125 1404 | ] 1405 | ], 1406 | "lastCommittedPoint": null, 1407 | "startBinding": null, 1408 | "endBinding": { 1409 | "elementId": "FXkwaR6vtAYM5Zht1tWhZ", 1410 | "focus": -0.5032601245447866, 1411 | "gap": 15.415588378906477 1412 | }, 1413 | "startArrowhead": null, 1414 | "endArrowhead": "arrow" 1415 | }, 1416 | { 1417 | "id": "FXkwaR6vtAYM5Zht1tWhZ", 1418 | "type": "text", 1419 | "x": 226.9781249141693, 1420 | "y": 3411.6313077163727, 1421 | "width": 252.10546875, 1422 | "height": 41.4, 1423 | "angle": 0, 1424 | "strokeColor": "#1e1e1e", 1425 | "backgroundColor": "transparent", 1426 | "fillStyle": "solid", 1427 | "strokeWidth": 2, 1428 | "strokeStyle": "solid", 1429 | "roughness": 1, 1430 | "opacity": 100, 1431 | "groupIds": [], 1432 | "frameId": null, 1433 | "roundness": null, 1434 | "seed": 1706192292, 1435 | "version": 55, 1436 | "versionNonce": 1961871652, 1437 | "isDeleted": false, 1438 | "boundElements": [ 1439 | { 1440 | "id": "uOgA275AxD-AIkkgPj5zS", 1441 | "type": "arrow" 1442 | } 1443 | ], 1444 | "updated": 1718447723285, 1445 | "link": null, 1446 | "locked": false, 1447 | "text": "Beginner HTML", 1448 | "fontSize": 36, 1449 | "fontFamily": 2, 1450 | "textAlign": "left", 1451 | "verticalAlign": "top", 1452 | "baseline": 32, 1453 | "containerId": null, 1454 | "originalText": "Beginner HTML", 1455 | "lineHeight": 1.15 1456 | }, 1457 | { 1458 | "type": "arrow", 1459 | "version": 418, 1460 | "versionNonce": 2086358820, 1461 | "isDeleted": false, 1462 | "id": "DOuHQWrNmI2kbeZg2q7JD", 1463 | "fillStyle": "solid", 1464 | "strokeWidth": 2, 1465 | "strokeStyle": "solid", 1466 | "roughness": 1, 1467 | "opacity": 100, 1468 | "angle": 0, 1469 | "x": 965.7822936153411, 1470 | "y": 3304.86359436855, 1471 | "strokeColor": "#1e1e1e", 1472 | "backgroundColor": "transparent", 1473 | "width": 4.941744414648724, 1474 | "height": 84.70782470703125, 1475 | "seed": 826086820, 1476 | "groupIds": [], 1477 | "frameId": null, 1478 | "roundness": { 1479 | "type": 2 1480 | }, 1481 | "boundElements": [], 1482 | "updated": 1718447727984, 1483 | "link": null, 1484 | "locked": false, 1485 | "startBinding": null, 1486 | "endBinding": { 1487 | "elementId": "LBCsxkYzbROshTEJWxCMD", 1488 | "focus": -0.5032601245447864, 1489 | "gap": 15.415588378906477 1490 | }, 1491 | "lastCommittedPoint": null, 1492 | "startArrowhead": null, 1493 | "endArrowhead": "arrow", 1494 | "points": [ 1495 | [ 1496 | 0, 1497 | 0 1498 | ], 1499 | [ 1500 | 4.941744414648724, 1501 | 84.70782470703125 1502 | ] 1503 | ] 1504 | }, 1505 | { 1506 | "type": "text", 1507 | "version": 262, 1508 | "versionNonce": 994010020, 1509 | "isDeleted": false, 1510 | "id": "LBCsxkYzbROshTEJWxCMD", 1511 | "fillStyle": "solid", 1512 | "strokeWidth": 2, 1513 | "strokeStyle": "solid", 1514 | "roughness": 1, 1515 | "opacity": 100, 1516 | "angle": 0, 1517 | "x": 896.913610754013, 1518 | "y": 3404.9870074544874, 1519 | "strokeColor": "#1e1e1e", 1520 | "backgroundColor": "transparent", 1521 | "width": 308.109375, 1522 | "height": 41.4, 1523 | "seed": 198361380, 1524 | "groupIds": [], 1525 | "frameId": null, 1526 | "roundness": null, 1527 | "boundElements": [ 1528 | { 1529 | "id": "DOuHQWrNmI2kbeZg2q7JD", 1530 | "type": "arrow" 1531 | } 1532 | ], 1533 | "updated": 1718447727983, 1534 | "link": null, 1535 | "locked": false, 1536 | "fontSize": 36, 1537 | "fontFamily": 2, 1538 | "text": "Intermediate HTML", 1539 | "textAlign": "left", 1540 | "verticalAlign": "top", 1541 | "containerId": null, 1542 | "originalText": "Intermediate HTML", 1543 | "lineHeight": 1.15, 1544 | "baseline": 32 1545 | }, 1546 | { 1547 | "type": "arrow", 1548 | "version": 612, 1549 | "versionNonce": 112002724, 1550 | "isDeleted": false, 1551 | "id": "llSoume8T_EzNwEDcmB_E", 1552 | "fillStyle": "solid", 1553 | "strokeWidth": 2, 1554 | "strokeStyle": "solid", 1555 | "roughness": 1, 1556 | "opacity": 100, 1557 | "angle": 0, 1558 | "x": 1703.8505919551849, 1559 | "y": 3299.2647271821534, 1560 | "strokeColor": "#1e1e1e", 1561 | "backgroundColor": "transparent", 1562 | "width": 2.0563901452023856, 1563 | "height": 84.22970581054688, 1564 | "seed": 510951204, 1565 | "groupIds": [], 1566 | "frameId": null, 1567 | "roundness": { 1568 | "type": 2 1569 | }, 1570 | "boundElements": [], 1571 | "updated": 1718447716175, 1572 | "link": null, 1573 | "locked": false, 1574 | "startBinding": null, 1575 | "endBinding": { 1576 | "elementId": "LSfp0IZ5jw5yWUyoXznX0", 1577 | "focus": 0.2158849952129185, 1578 | "gap": 13.760894775390398 1579 | }, 1580 | "lastCommittedPoint": null, 1581 | "startArrowhead": null, 1582 | "endArrowhead": "arrow", 1583 | "points": [ 1584 | [ 1585 | 0, 1586 | 0 1587 | ], 1588 | [ 1589 | -2.0563901452023856, 1590 | 84.22970581054688 1591 | ] 1592 | ] 1593 | }, 1594 | { 1595 | "type": "text", 1596 | "version": 343, 1597 | "versionNonce": 1880920612, 1598 | "isDeleted": false, 1599 | "id": "LSfp0IZ5jw5yWUyoXznX0", 1600 | "fillStyle": "solid", 1601 | "strokeWidth": 2, 1602 | "strokeStyle": "solid", 1603 | "roughness": 1, 1604 | "opacity": 100, 1605 | "angle": 0, 1606 | "x": 1537.8427489376068, 1607 | "y": 3397.255327768091, 1608 | "strokeColor": "#1e1e1e", 1609 | "backgroundColor": "transparent", 1610 | "width": 268.119140625, 1611 | "height": 41.4, 1612 | "seed": 23132836, 1613 | "groupIds": [], 1614 | "frameId": null, 1615 | "roundness": null, 1616 | "boundElements": [ 1617 | { 1618 | "id": "llSoume8T_EzNwEDcmB_E", 1619 | "type": "arrow" 1620 | } 1621 | ], 1622 | "updated": 1718447716175, 1623 | "link": null, 1624 | "locked": false, 1625 | "fontSize": 36, 1626 | "fontFamily": 2, 1627 | "text": "Advanced HTML", 1628 | "textAlign": "left", 1629 | "verticalAlign": "top", 1630 | "containerId": null, 1631 | "originalText": "Advanced HTML", 1632 | "lineHeight": 1.15, 1633 | "baseline": 32 1634 | }, 1635 | { 1636 | "id": "aTrVmBHAG5J73fyTiIIG6", 1637 | "type": "text", 1638 | "x": 219.3999999141693, 1639 | "y": 3497.000069923404, 1640 | "width": 451.36328125, 1641 | "height": 257.59999999999997, 1642 | "angle": 0, 1643 | "strokeColor": "#1e1e1e", 1644 | "backgroundColor": "transparent", 1645 | "fillStyle": "solid", 1646 | "strokeWidth": 2, 1647 | "strokeStyle": "solid", 1648 | "roughness": 1, 1649 | "opacity": 100, 1650 | "groupIds": [], 1651 | "frameId": null, 1652 | "roundness": null, 1653 | "seed": 2091447196, 1654 | "version": 188, 1655 | "versionNonce": 196740004, 1656 | "isDeleted": false, 1657 | "boundElements": null, 1658 | "updated": 1718447867848, 1659 | "link": null, 1660 | "locked": false, 1661 | "text": "1. Introduction to HTML\n2. Basic Tags, Attributes, Debugging\n3. Text Formatting Tags\n4. Lists\n5. Links\n6. Image and iframe\n7. Table\n8. Basic Form", 1662 | "fontSize": 28, 1663 | "fontFamily": 2, 1664 | "textAlign": "left", 1665 | "verticalAlign": "top", 1666 | "baseline": 250, 1667 | "containerId": null, 1668 | "originalText": "1. Introduction to HTML\n2. Basic Tags, Attributes, Debugging\n3. Text Formatting Tags\n4. Lists\n5. Links\n6. Image and iframe\n7. Table\n8. Basic Form", 1669 | "lineHeight": 1.15 1670 | } 1671 | ], 1672 | "appState": { 1673 | "gridSize": null, 1674 | "viewBackgroundColor": "#ffffff" 1675 | }, 1676 | "files": {} 1677 | } -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Document 7 | 8 | 9 | 16 | 17 |
18 |

Anis Express

19 |

20 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Nemo esse 21 | voluptatum maiores quae, cumque laboriosam repudiandae cupiditate 22 | adipisci non tenetur. 23 |

24 |
25 | 26 |
27 |
28 |
29 |

Apple Iphone

30 |

31 | Lorem ipsum dolor sit amet consectetur adipisicing elit. Aut, 32 | reiciendis! 33 |

34 | 35 |
36 |
37 |
38 | 39 | 42 | 43 | 44 | 45 | 46 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anisul-Islam/javascript-documentation/54629060bf90abba9969a24af5fee0209588a736/test.js --------------------------------------------------------------------------------