@alwatr/is-number 5.7.0 → 5.7.1
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 +6 -0
- package/dist/main.cjs +2 -2
- package/dist/main.mjs +2 -2
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,12 @@
|
|
|
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
|
+
## [5.7.1](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@5.7.0...@alwatr/is-number@5.7.1) (2025-08-23)
|
|
7
|
+
|
|
8
|
+
### Code Refactoring
|
|
9
|
+
|
|
10
|
+
* Updated all package.json files in the project to change dependency version specifiers from "workspace:^" to "workspace:*" for consistency and to allow for more flexible version resolution. ([db6a4f7](https://github.com/Alwatr/nanolib/commit/db6a4f76deec2d1d8039978144e4bc51b6f1a0e3)) by @alimd
|
|
11
|
+
|
|
6
12
|
## [5.7.0](https://github.com/Alwatr/nanolib/compare/@alwatr/is-number@5.6.2...@alwatr/is-number@5.7.0) (2025-04-20)
|
|
7
13
|
|
|
8
14
|
### Features
|
package/dist/main.cjs
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/* @alwatr/is-number v5.7.
|
|
1
|
+
/* @alwatr/is-number v5.7.1 */
|
|
2
2
|
"use strict";
|
|
3
3
|
var __defProp = Object.defineProperty;
|
|
4
4
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -27,7 +27,7 @@ __export(main_exports, {
|
|
|
27
27
|
});
|
|
28
28
|
module.exports = __toCommonJS(main_exports);
|
|
29
29
|
var import_package_tracer = require("@alwatr/package-tracer");
|
|
30
|
-
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/is-number", "5.7.
|
|
30
|
+
__dev_mode__: import_package_tracer.packageTracer.add("@alwatr/is-number", "5.7.1");
|
|
31
31
|
function isFiniteNumber(value) {
|
|
32
32
|
if (typeof Number.isFinite === "function") {
|
|
33
33
|
return Number.isFinite(value);
|
package/dist/main.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
/* @alwatr/is-number v5.7.
|
|
1
|
+
/* @alwatr/is-number v5.7.1 */
|
|
2
2
|
|
|
3
3
|
// src/main.ts
|
|
4
4
|
import { packageTracer } from "@alwatr/package-tracer";
|
|
5
|
-
__dev_mode__: packageTracer.add("@alwatr/is-number", "5.7.
|
|
5
|
+
__dev_mode__: packageTracer.add("@alwatr/is-number", "5.7.1");
|
|
6
6
|
function isFiniteNumber(value) {
|
|
7
7
|
if (typeof Number.isFinite === "function") {
|
|
8
8
|
return Number.isFinite(value);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@alwatr/is-number",
|
|
3
|
-
"version": "5.7.
|
|
3
|
+
"version": "5.7.1",
|
|
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": [
|
|
@@ -86,14 +86,14 @@
|
|
|
86
86
|
"clean": "rm -rfv dist *.tsbuildinfo"
|
|
87
87
|
},
|
|
88
88
|
"dependencies": {
|
|
89
|
-
"@alwatr/package-tracer": "
|
|
89
|
+
"@alwatr/package-tracer": "5.5.4"
|
|
90
90
|
},
|
|
91
91
|
"devDependencies": {
|
|
92
|
-
"@alwatr/nano-build": "
|
|
93
|
-
"@alwatr/prettier-config": "
|
|
94
|
-
"@alwatr/tsconfig-base": "
|
|
92
|
+
"@alwatr/nano-build": "5.5.4",
|
|
93
|
+
"@alwatr/prettier-config": "5.0.0",
|
|
94
|
+
"@alwatr/tsconfig-base": "5.0.0",
|
|
95
95
|
"jest": "^29.7.0",
|
|
96
96
|
"typescript": "^5.8.3"
|
|
97
97
|
},
|
|
98
|
-
"gitHead": "
|
|
98
|
+
"gitHead": "dd749e0b9adecdefa8e906669858c014b53bdab0"
|
|
99
99
|
}
|