@alwatr/is-number 1.0.9 → 1.0.11

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/CHANGELOG.md CHANGED
@@ -3,6 +3,17 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [1.0.11](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.0.10...@alwatr/is-number@1.0.11) (2024-09-21)
7
+
8
+ **Note:** Version bump only for package @alwatr/is-number
9
+
10
+ ## [1.0.10](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.0.9...@alwatr/is-number@1.0.10) (2024-09-15)
11
+
12
+ ### Dependencies update
13
+
14
+ * bump the development-dependencies group across 1 directory with 10 updates ([9ed98ff](https://github.com/Alwatr/nanolib/commit/9ed98ffd0668d5a36e255c82edab3af53bffda8f)) by @dependabot[bot]
15
+ * update ([c36ed50](https://github.com/Alwatr/nanolib/commit/c36ed50f68da2f5608ccd96119963a16cfacb4ce)) by @AliMD
16
+
6
17
  ## [1.0.9](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.0.8...@alwatr/is-number@1.0.9) (2024-08-31)
7
18
 
8
19
  ### Miscellaneous Chores
package/dist/main.cjs CHANGED
@@ -1,3 +1,3 @@
1
- /* @alwatr/is-number v1.0.9 */
1
+ /* @alwatr/is-number v1.0.11 */
2
2
  "use strict";var e=Object.defineProperty;var f=Object.getOwnPropertyDescriptor;var s=Object.getOwnPropertyNames;var b=Object.prototype.hasOwnProperty;var m=(i,n)=>{for(var t in n)e(i,t,{get:n[t],enumerable:!0})},p=(i,n,t,o)=>{if(n&&typeof n=="object"||typeof n=="function")for(let r of s(n))!b.call(i,r)&&r!==t&&e(i,r,{get:()=>n[r],enumerable:!(o=f(n,r))||o.enumerable});return i};var u=i=>p(e({},"__esModule",{value:!0}),i);var N={};m(N,{isNumber:()=>F});module.exports=u(N);function F(i){return typeof i=="number"?i-i===0:typeof i=="string"&&i.trim()!==""?Number.isFinite?Number.isFinite(+i):isFinite(+i):!1}0&&(module.exports={isNumber});
3
3
  //# sourceMappingURL=main.cjs.map
package/dist/main.mjs CHANGED
@@ -1,3 +1,3 @@
1
- /* @alwatr/is-number v1.0.9 */
1
+ /* @alwatr/is-number v1.0.11 */
2
2
  function n(i){return typeof i=="number"?i-i===0:typeof i=="string"&&i.trim()!==""?Number.isFinite?Number.isFinite(+i):isFinite(+i):!1}export{n as isNumber};
3
3
  //# sourceMappingURL=main.mjs.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alwatr/is-number",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "description": "A simple utility to Check the value is number or can convert to a number, for example string ' 123 ' can be converted to 123.",
5
5
  "author": "S. Ali Mihandoost <ali.mihandoost@gmail.com>",
6
6
  "keywords": [
@@ -85,12 +85,12 @@
85
85
  "clean": "rm -rfv dist *.tsbuildinfo"
86
86
  },
87
87
  "devDependencies": {
88
- "@alwatr/nano-build": "^1.3.8",
88
+ "@alwatr/nano-build": "^1.3.10",
89
89
  "@alwatr/prettier-config": "^1.0.4",
90
90
  "@alwatr/tsconfig-base": "^1.2.0",
91
- "@types/node": "^22.5.1",
91
+ "@types/node": "^22.5.5",
92
92
  "jest": "^29.7.0",
93
- "typescript": "^5.5.4"
93
+ "typescript": "^5.6.2"
94
94
  },
95
- "gitHead": "1f163e85c5f0c769d5dcdf232e8042c64ec1854d"
95
+ "gitHead": "6d82461cfdee936b30cbc67473a5a5048773255a"
96
96
  }