We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddac898 commit ad4422bCopy full SHA for ad4422b
README.md
@@ -1,10 +1,10 @@
1
-# ramda-normalize-url
2
-Fun experiment to normalize URLs w/ ramda
+# functional-normalize-url
+Fun experiment to normalize URLs w/ functional programming
3
4
## Usage
5
6
```js
7
-const normalize = require('ramda-normalize-url');
+const normalize = require('functional-normalize-url');
8
9
normalize('http://hello.com//there/../buddy/..');
10
//=> "http://hello.com/there/buddy/"
@@ -14,3 +14,7 @@ normalize('http://hello.com//there/../buddy/..');
14
15
- [x] Dedupe slashes
16
- [x] Dedupe dots
17
+- [x] Decode
18
+- [x] Lowercase scheme
19
+- [x] Remove default http|https ports
20
+- [x] Adds trailing slash
0 commit comments