Skip to content

Commit 3c5fccb

Browse files
chore(deps-dev): bump rollup from 4.39.0 to 4.45.1 in /create-jira (#16)
1 parent d4e7043 commit 3c5fccb

File tree

4 files changed

+95
-95
lines changed

4 files changed

+95
-95
lines changed

create-jira/dist/index.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75909,7 +75909,7 @@ function requireLodash () {
7590975909
return symbolToString ? symbolToString.call(value) : '';
7591075910
}
7591175911
var result = (value + '');
75912-
return (result == '0' && (1 / value) == -Infinity) ? '-0' : result;
75912+
return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;
7591375913
}
7591475914

7591575915
/**
@@ -78432,7 +78432,7 @@ function requireLodash () {
7843278432
return value;
7843378433
}
7843478434
var result = (value + '');
78435-
return (result == '0' && (1 / value) == -Infinity) ? '-0' : result;
78435+
return (result == '0' && (1 / value) == -INFINITY) ? '-0' : result;
7843678436
}
7843778437

7843878438
/**
@@ -83774,7 +83774,7 @@ function requireLodash () {
8377483774
* // => false
8377583775
*/
8377683776
function isSafeInteger(value) {
83777-
return isInteger(value) && value >= -9007199254740991 && value <= MAX_SAFE_INTEGER;
83777+
return isInteger(value) && value >= -MAX_SAFE_INTEGER && value <= MAX_SAFE_INTEGER;
8377883778
}
8377983779

8378083780
/**
@@ -84041,7 +84041,7 @@ function requireLodash () {
8404184041
return value === 0 ? value : 0;
8404284042
}
8404384043
value = toNumber(value);
84044-
if (value === INFINITY || value === -Infinity) {
84044+
if (value === INFINITY || value === -INFINITY) {
8404584045
var sign = (value < 0 ? -1 : 1);
8404684046
return sign * MAX_INTEGER;
8404784047
}
@@ -84210,7 +84210,7 @@ function requireLodash () {
8421084210
*/
8421184211
function toSafeInteger(value) {
8421284212
return value
84213-
? baseClamp(toInteger(value), -9007199254740991, MAX_SAFE_INTEGER)
84213+
? baseClamp(toInteger(value), -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER)
8421484214
: (value === 0 ? value : 0);
8421584215
}
8421684216

create-jira/dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

create-jira/package-lock.json

Lines changed: 88 additions & 88 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)