Remove url tag
This commit is contained in:
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: currentURL
|
||||
tags: browser,url,beginner
|
||||
tags: browser,beginner
|
||||
---
|
||||
|
||||
Returns the current URL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: getBaseURL
|
||||
tags: browser,string,url,beginner
|
||||
tags: browser,string,beginner
|
||||
---
|
||||
|
||||
Returns the current URL without any parameters.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: getURLParameters
|
||||
tags: browser,string,url,intermediate
|
||||
tags: browser,string,intermediate
|
||||
---
|
||||
|
||||
Returns an object containing the parameters of the current URL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: httpDelete
|
||||
tags: browser,url,intermediate
|
||||
tags: browser,intermediate
|
||||
---
|
||||
|
||||
Makes a `DELETE` request to the passed URL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: httpGet
|
||||
tags: browser,url,intermediate
|
||||
tags: browser,intermediate
|
||||
---
|
||||
|
||||
Makes a `GET` request to the passed URL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: httpPost
|
||||
tags: browser,url,intermediate
|
||||
tags: browser,intermediate
|
||||
---
|
||||
|
||||
Makes a `POST` request to the passed URL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: httpPut
|
||||
tags: browser,url,intermediate
|
||||
tags: browser,intermediate
|
||||
---
|
||||
|
||||
Makes a `PUT` request to the passed URL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: httpsRedirect
|
||||
tags: browser,url,intermediate
|
||||
tags: browser,intermediate
|
||||
---
|
||||
|
||||
Redirects the page to HTTPS if its currently in HTTP. Also, pressing the back button doesn't take it back to the HTTP page as its replaced in the history.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: isAbsoluteURL
|
||||
tags: string,browser,url,intermediate
|
||||
tags: string,browser,intermediate
|
||||
---
|
||||
|
||||
Returns `true` if the given string is an absolute URL, `false` otherwise.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: redirect
|
||||
tags: browser,url,beginner
|
||||
tags: browser,beginner
|
||||
---
|
||||
|
||||
Redirects to a specified URL.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: runAsync
|
||||
tags: browser,function,promise,url,advanced
|
||||
tags: browser,function,promise,advanced
|
||||
---
|
||||
|
||||
Runs a function in a separate thread by using a [Web Worker](https://developer.mozilla.org/en-US/docs/Web/API/Web_Workers_API/Using_web_workers), allowing long running functions to not block the UI.
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: stableSort
|
||||
tags: array,sort,advanced,intermediate
|
||||
tags: array,advanced
|
||||
---
|
||||
|
||||
Performs stable sorting of an array, preserving the initial indexes of items when their values are the same.
|
||||
|
||||
Reference in New Issue
Block a user