1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 03:59:54 +02:00

Fix: remove text highlight in links (#3273)

This commit is contained in:
Tilen Pogačnik
2023-01-09 11:00:52 +01:00
committed by GitHub
parent dc56ef6190
commit faee01b22d
2 changed files with 13 additions and 13 deletions

View File

@@ -6,12 +6,12 @@ When a runtime error occurs, a new `Error` object is created and thrown. With th
Besides error constructors, Javascript also has other core Error constructors. Besides error constructors, Javascript also has other core Error constructors.
- [`AggregateError`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError) - [AggregateError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/AggregateError)
- [`EvalError`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError) - [EvalError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/EvalError)
- [`InternalError`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError) - [InternalError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/InternalError)
- [`RangeError`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError) - [RangeError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/RangeError)
- [`ReferenceError`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError) - [ReferenceError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/ReferenceError)
- [`SyntaxError`](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError) - [SyntaxError](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/SyntaxError)
## Example ## Example

View File

@@ -3,14 +3,14 @@
NativeDriver is an implementation of the WebDriver API which drives the UI of a native application rather than a web application. It extends the WebDriver API in a few key places, and re-interprets the existing API for native applications. NativeDriver is an implementation of the WebDriver API which drives the UI of a native application rather than a web application. It extends the WebDriver API in a few key places, and re-interprets the existing API for native applications.
- MySQL: - MySQL:
- [`mysql`](https://www.npmjs.com/package/mysql) - [mysql](https://www.npmjs.com/package/mysql)
- [`mysql2`](https://www.npmjs.com/package/mysql2) - [mysql2](https://www.npmjs.com/package/mysql2)
- MariaDB: - MariaDB:
- [`mariadb`](https://www.npmjs.com/package/mariadb) - [mariadb](https://www.npmjs.com/package/mariadb)
- PostgreSQL: - PostgreSQL:
- [`pg`](https://www.npmjs.com/package/pg) - [pg](https://www.npmjs.com/package/pg)
- Microsoft SQL Server: - Microsoft SQL Server:
- [`tedious`](https://www.npmjs.com/package/tedious) - [tedious](https://www.npmjs.com/package/tedious)
- [`mssql`](https://www.npmjs.com/package/mssql) - [mssql](https://www.npmjs.com/package/mssql)
- Oracle: - Oracle:
- [`oracledb`](https://www.npmjs.com/package/oracledb) - [oracledb](https://www.npmjs.com/package/oracledb)