@apiverve/agecalculator 1.1.7 → 1.1.9
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 +17 -17
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,22 +67,22 @@ api.execute(query, function (error, data) {
|
|
|
67
67
|
###### Example Response
|
|
68
68
|
|
|
69
69
|
```
|
|
70
|
-
{
|
|
71
|
-
"status": "ok",
|
|
72
|
-
"error": null,
|
|
73
|
-
"data": {
|
|
74
|
-
"dob": "1990-01-01",
|
|
75
|
-
"age_years":
|
|
76
|
-
"age_months":
|
|
77
|
-
"age_weeks":
|
|
78
|
-
"age_days":
|
|
79
|
-
"age_words": {
|
|
80
|
-
"years": "thirty-
|
|
81
|
-
"ordinal": "thirty-
|
|
82
|
-
"full": "thirty-
|
|
83
|
-
}
|
|
84
|
-
},
|
|
85
|
-
"code": 200
|
|
70
|
+
{
|
|
71
|
+
"status": "ok",
|
|
72
|
+
"error": null,
|
|
73
|
+
"data": {
|
|
74
|
+
"dob": "1990-01-01",
|
|
75
|
+
"age_years": 35,
|
|
76
|
+
"age_months": 421,
|
|
77
|
+
"age_weeks": 1833,
|
|
78
|
+
"age_days": 12834,
|
|
79
|
+
"age_words": {
|
|
80
|
+
"years": "thirty-five",
|
|
81
|
+
"ordinal": "thirty-fifth",
|
|
82
|
+
"full": "thirty-five years old"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"code": 200
|
|
86
86
|
}
|
|
87
87
|
```
|
|
88
88
|
|
|
@@ -108,7 +108,7 @@ All usage of the APIVerve website, API, and services is subject to the [APIVerve
|
|
|
108
108
|
## License
|
|
109
109
|
Licensed under the The MIT License (MIT)
|
|
110
110
|
|
|
111
|
-
Copyright (©)
|
|
111
|
+
Copyright (©) 2025 APIVerve, and EvlarSoft LLC
|
|
112
112
|
|
|
113
113
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
114
114
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@apiverve/agecalculator",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.9",
|
|
4
4
|
"description": "Age Calculator is a simple tool for calculating age from the date of birth. It returns the calculated age based on the date of birth provided.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|