@alwatr/is-number 1.1.0 → 1.1.2
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 +10 -0
- package/README.md +1 -1
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +6 -6
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.1.2](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.1.1...@alwatr/is-number@1.1.2) (2024-10-10)
|
|
7
|
+
|
|
8
|
+
### Dependencies update
|
|
9
|
+
|
|
10
|
+
* bump the development-dependencies group with 10 updates ([fa4aaf0](https://github.com/Alwatr/nanolib/commit/fa4aaf04c907ecae06aa14000ce35216170c15ad)) by @dependabot[bot]
|
|
11
|
+
|
|
12
|
+
## [1.1.1](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.1.0...@alwatr/is-number@1.1.1) (2024-10-08)
|
|
13
|
+
|
|
14
|
+
**Note:** Version bump only for package @alwatr/is-number
|
|
15
|
+
|
|
6
16
|
## [1.1.0](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@1.0.11...@alwatr/is-number@1.1.0) (2024-09-29)
|
|
7
17
|
|
|
8
18
|
### Features
|
package/README.md
CHANGED
|
@@ -67,7 +67,7 @@ isNumber({}); // false
|
|
|
67
67
|
|
|
68
68
|
## Sponsors
|
|
69
69
|
|
|
70
|
-
The following companies, organizations, and individuals support
|
|
70
|
+
The following companies, organizations, and individuals support Nanolib ongoing maintenance and development. Become a Sponsor to get your logo on our README and website.
|
|
71
71
|
|
|
72
72
|
[](https://exirstudio.com)
|
|
73
73
|
|
package/dist/main.cjs
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
/* @alwatr/is-number v1.1.
|
|
2
|
-
"use strict";var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var p=Object.prototype.hasOwnProperty;var s=(r,i)=>{for(var e in i)t(r,e,{get:i[e],enumerable:!0})},a=(r,i,e,o)=>{if(i&&typeof i=="object"||typeof i=="function")for(let n of f(i))!p.call(r,n)&&n!==e&&t(r,n,{get:()=>i[n],enumerable:!(o=m(i,n))||o.enumerable});return r};var b=r=>a(t({},"__esModule",{value:!0}),r);var g={};s(g,{isNumber:()=>c});module.exports=b(g);var _=require("@alwatr/package-tracer");_.packageTracer.add("@alwatr/is-number","1.1.
|
|
1
|
+
/* @alwatr/is-number v1.1.2 */
|
|
2
|
+
"use strict";var t=Object.defineProperty;var m=Object.getOwnPropertyDescriptor;var f=Object.getOwnPropertyNames;var p=Object.prototype.hasOwnProperty;var s=(r,i)=>{for(var e in i)t(r,e,{get:i[e],enumerable:!0})},a=(r,i,e,o)=>{if(i&&typeof i=="object"||typeof i=="function")for(let n of f(i))!p.call(r,n)&&n!==e&&t(r,n,{get:()=>i[n],enumerable:!(o=m(i,n))||o.enumerable});return r};var b=r=>a(t({},"__esModule",{value:!0}),r);var g={};s(g,{isNumber:()=>c});module.exports=b(g);var _=require("@alwatr/package-tracer");_.packageTracer.add("@alwatr/is-number","1.1.2");function c(r){return typeof r=="number"?r-r===0:typeof r=="string"&&r.trim()!==""?Number.isFinite?Number.isFinite(+r):isFinite(+r):!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.1.
|
|
2
|
-
import{packageTracer as i}from"@alwatr/package-tracer";i.add("@alwatr/is-number","1.1.
|
|
1
|
+
/* @alwatr/is-number v1.1.2 */
|
|
2
|
+
import{packageTracer as i}from"@alwatr/package-tracer";i.add("@alwatr/is-number","1.1.2");function e(r){return typeof r=="number"?r-r===0:typeof r=="string"&&r.trim()!==""?Number.isFinite?Number.isFinite(+r):isFinite(+r):!1}export{e 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.1.
|
|
3
|
+
"version": "1.1.2",
|
|
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,14 +85,14 @@
|
|
|
85
85
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
86
86
|
},
|
|
87
87
|
"dependencies": {
|
|
88
|
-
"@alwatr/package-tracer": "^1.0.
|
|
88
|
+
"@alwatr/package-tracer": "^1.0.2"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@alwatr/nano-build": "^1.
|
|
91
|
+
"@alwatr/nano-build": "^1.6.0",
|
|
92
92
|
"@alwatr/prettier-config": "^1.0.5",
|
|
93
|
-
"@alwatr/tsconfig-base": "^1.3.
|
|
93
|
+
"@alwatr/tsconfig-base": "^1.3.1",
|
|
94
94
|
"jest": "^29.7.0",
|
|
95
|
-
"typescript": "^5.6.
|
|
95
|
+
"typescript": "^5.6.3"
|
|
96
96
|
},
|
|
97
|
-
"gitHead": "
|
|
97
|
+
"gitHead": "6ad24764eae1b88d7d1bb19217578b02b8c22aaf"
|
|
98
98
|
}
|