countrynormalizer 0.2.4 → 0.2.6

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -275,7 +275,7 @@ Over the next few weeks (hopefully) I plan to build out the following...
275
275
  * ~~tld search support should be added to unique lookups since these are unique values.~~
276
276
  * Optimize the search order of data when performing lookups.
277
277
  * Clean up some of the `common_reference` values. A lot of these are executive decisions I quickly made and could be better researched or refined.
278
- * Provide better documentation on the data sources for each of these fields to help assure people of data validity and no collisions of unique data points.
278
+ * ~~Provide better documentation on the data sources for each of these fields to help assure people of data validity and no collisions of unique data points.~~
279
279
  * Flesh out more complete unit testing. I have a few running right now checking ISO number values but all data values should be validated.
280
280
  * Add size optimized lookups for common operations. Currently the `complete.json` object used for country data is rather large and bloats this library. I want to make smaller, tree-shakable functions to handle only certain data queries on the fly.
281
281
  * Set up a small website to visualize all this data in an accessible table for using alongside this library. Right now a lot of it is just compiled in a haphazard Google Doc where I did my initial organizing before translating a CSV into a JSON file.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "countrynormalizer",
3
- "version": "0.2.4",
3
+ "version": "0.2.6",
4
4
  "description": "ISO 3166 country data lookup and normalization. Convert between alpha-2, alpha-3, ISO numbers, country names, calling codes, flag emojis, TLDs, continents, and demonyms.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",