is-academic-email 1.0.3 → 1.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/swot-metadata.d.ts +1 -1
- package/dist/swot-metadata.js +2 -2
- package/package.json +9 -1
package/README.md
CHANGED
|
@@ -47,7 +47,7 @@ Returns `true` if the host is under a known academic/public-suffix TLD (supports
|
|
|
47
47
|
|
|
48
48
|
### `isStoplisted(input: string): boolean`
|
|
49
49
|
|
|
50
|
-
Returns `true` if the host matches a known stoplisted domain
|
|
50
|
+
Returns `true` if the host matches a known stoplisted domain.
|
|
51
51
|
|
|
52
52
|
### `findSchoolNames(input: string): string[]`
|
|
53
53
|
|
package/dist/swot-metadata.d.ts
CHANGED
|
@@ -2,5 +2,5 @@ export declare const SWOT_METADATA: {
|
|
|
2
2
|
readonly commit: "8866dac84c80b27b3918c3a15d6f8707dbf84740";
|
|
3
3
|
readonly date: "2025-09-07 16:53:42 +0300";
|
|
4
4
|
readonly url: "https://github.com/jetbrains/swot";
|
|
5
|
-
readonly updatedAt: "2025-09-07T17:
|
|
5
|
+
readonly updatedAt: "2025-09-07T17:31:32.590Z";
|
|
6
6
|
};
|
package/dist/swot-metadata.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
// This file was automatically generated on 2025-09-07T17:
|
|
1
|
+
// This file was automatically generated on 2025-09-07T17:31:35.435Z
|
|
2
2
|
export const SWOT_METADATA = {
|
|
3
3
|
"commit": "8866dac84c80b27b3918c3a15d6f8707dbf84740",
|
|
4
4
|
"date": "2025-09-07 16:53:42 +0300",
|
|
5
5
|
"url": "https://github.com/jetbrains/swot",
|
|
6
|
-
"updatedAt": "2025-09-07T17:
|
|
6
|
+
"updatedAt": "2025-09-07T17:31:32.590Z"
|
|
7
7
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "is-academic-email",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.4",
|
|
4
4
|
"description": "Fast academic email validation using the JetBrains swot database",
|
|
5
5
|
"repository": {
|
|
6
6
|
"url": "git+https://github.com/amplitudesxd/is-academic-email.git"
|
|
@@ -19,6 +19,14 @@
|
|
|
19
19
|
"dist",
|
|
20
20
|
"data.json.br"
|
|
21
21
|
],
|
|
22
|
+
"keywords": [
|
|
23
|
+
"academic-email",
|
|
24
|
+
"email-validation",
|
|
25
|
+
"domain",
|
|
26
|
+
"validator",
|
|
27
|
+
"swot",
|
|
28
|
+
"tld"
|
|
29
|
+
],
|
|
22
30
|
"scripts": {
|
|
23
31
|
"bundle-data": "tsx scripts/bundle-data.ts",
|
|
24
32
|
"build": "pnpm run bundle-data && tsc"
|