@alwatr/is-number 1.0.4 → 1.0.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.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,16 @@
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.6](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.0.5...@alwatr/is-number@1.0.6) (2024-05-12)
7
+
8
+ ### Dependencies update
9
+
10
+ * upgrade ([6dbd300](https://github.com/Alwatr/nanolib/commit/6dbd300642c9bcc9e7d0b281e244bf1b06eb1c38)) by @AliMD
11
+
12
+ ## [1.0.5](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.0.4...@alwatr/is-number@1.0.5) (2024-04-25)
13
+
14
+ **Note:** Version bump only for package @alwatr/is-number
15
+
6
16
  ## [1.0.4](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.0.3...@alwatr/is-number@1.0.4) (2024-03-28)
7
17
 
8
18
  **Note:** Version bump only for package @alwatr/is-number
package/dist/main.cjs CHANGED
@@ -1,3 +1,3 @@
1
- /* @alwatr/is-number v1.0.4 */
1
+ /* @alwatr/is-number v1.0.6 */
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.4 */
1
+ /* @alwatr/is-number v1.0.6 */
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.4",
3
+ "version": "1.0.6",
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.4",
88
+ "@alwatr/nano-build": "^1.3.6",
89
89
  "@alwatr/prettier-config": "^1.0.4",
90
90
  "@alwatr/tsconfig-base": "^1.1.2",
91
- "@types/node": "^20.11.30",
91
+ "@types/node": "^20.12.11",
92
92
  "jest": "^29.7.0",
93
- "typescript": "^5.4.3"
93
+ "typescript": "^5.4.5"
94
94
  },
95
- "gitHead": "df149736d1e85335aaeb9c547ff3bdd1161f9b33"
95
+ "gitHead": "c69cb32c4076c208d316ace582e73deb328436bf"
96
96
  }