Skip to content

Commit cb772ee

Browse files
authored
Merge pull request #4 from autogram-is/ESM
ESM compatibility
2 parents a6a90ee + 53fd9b5 commit cb772ee

22 files changed

+418
-9540
lines changed

.eslintignore

-1
This file was deleted.

.eslintrc.json

-3
This file was deleted.

.gitignore

+4-3
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,6 @@ bower_components
3737
# Compiled binary addons (https://nodejs.org/api/addons.html)
3838
build/Release
3939

40-
# Transpiled js files
41-
/build
42-
4340
# Dependency directories
4441
node_modules/
4542
jspm_packages/
@@ -106,3 +103,7 @@ dist
106103

107104
# TernJS port file
108105
.tern-port
106+
107+
# MacOS cruft
108+
.DS_store
109+
package-lock.json

.prettierrc.js

-3
This file was deleted.

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Processing, normalizing, and de-duplicating large piles of URLs can be a pain, p
44

55
URL Tools is a helper library whose sole purpose is making that process just a little less frustrating. It consists of four major pieces:
66

7-
- `ParsedUrl`, a wrapper for the standard WHATWG `URL` class that mixes in the domain and subdomain parsing from [`tldjs`](https://www.npmjs.com/package/tldjs). Serializing a `ParsedUrl` object to JSON also produces a broken out collection of its individual properties, rather than spitting out the `href` property, as is the `URL` class's habit.
7+
- `ParsedUrl`, a wrapper for the standard WHATWG `URL` class that mixes in the domain and subdomain parsing from [`tldts`](https://www.npmjs.com/package/tldts), and provides a convenience serializer that preserves the object's individual properties, rather that flattening it to an href the way `URL.toJSON()` does.
88
- A collection set of helper functions for URL filtering and normalizing operations, including sorting querystring parameters, stripping social sharing cruft, remapping 'ww1', 'ww2', etc. subdomains to a single canonical one, identifying web vs. non-web URLs, flagging urls on public hosting like S3, and more.
99
- `NormalizedUrl`, a version of `ParsedUrl` that applies one of those normalizer functions automatically on instantiation. Functions that accept a `URL` or `ParsedURL` as a parameter can use `if (url instanceof NormalizedUrl)` to determine whether a given incoming URL has already been normalized. Yay.
1010
- `UrlSet`, `ParsedUrlSet`, and `NormalizedUrlSet`, a trio of Set classes that store, de-duplicate, and normalize piles of Urls in bulk. It's a bit fussy with bulk adding of relative URLs, but you can pass in a 'fallback base url' that helps in some circumstances.

jestconfig.json

-7
This file was deleted.

0 commit comments

Comments
 (0)