9 Commits
1.0.3 ... 1.0.5

Author SHA1 Message Date
Vitaly Puzrin
af3e0a9b7c 1.0.5 released 2020-03-03 05:02:17 +03:00
Vitaly Puzrin
7ff0277276 Merge pull request #6 from turt2live/patch-1
Ship the TypeScript declarations too
2020-03-03 04:59:09 +03:00
Travis Ralston
d6ec78e7c1 Ship the TypeScript declarations too
TypeScript declarations were added, but unfortunately they didn't get put into the release because they weren't listed as a file.
2020-03-02 18:19:17 -07:00
Vitaly Puzrin
7ac80669b0 1.0.4 released 2020-02-05 22:14:43 +03:00
Vitaly Puzrin
0fca8b9920 Revert "Use HTTPS do download confusables"
This reverts commit a6c803a17d.
2020-02-05 22:06:25 +03:00
Vitaly Puzrin
b7a5926d98 Merge pull request #5 from foldleft/foldleft/type-defs
add a type definition file for typescript users
2020-02-05 21:55:09 +03:00
Zoe
fee537fbf9 add a type definition file for typescript users 2020-02-05 12:01:02 +00:00
Vitaly Puzrin
5fa3d0af6f Use HTTPS do download confusables (#4)
Use HTTPS do download confusables
2020-01-15 20:13:39 +03:00
Jonathan Leitschuh
a6c803a17d Use HTTPS do download confusables 2020-01-15 12:10:41 -05:00
3 changed files with 19 additions and 2 deletions

View File

@@ -1,3 +1,15 @@
1.0.5 / 2020-03-03
------------------
- Include missed TS definition into npm package.
1.0.4 / 2020-02-05
------------------
- Added TS definition.
1.0.3 / 2019-11-04
------------------

4
index.d.ts vendored Normal file
View File

@@ -0,0 +1,4 @@
declare module 'unhomoglyph' {
const unhomoglyph: (s: string) => string;
export default unhomoglyph;
}

View File

@@ -1,6 +1,6 @@
{
"name": "unhomoglyph",
"version": "1.0.3",
"version": "1.0.5",
"description": "Replace all homoglyphs with base characters.",
"keywords": [
"homoglyph",
@@ -10,7 +10,8 @@
"license": "MIT",
"files": [
"index.js",
"data.json"
"data.json",
"index.d.ts"
],
"scripts": {
"lint": "eslint .",