Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

feat($filter): Display Infinity symbol when number is Infinity #10422

Closed
wants to merge 1 commit into from
Closed

feat($filter): Display Infinity symbol when number is Infinity #10422

wants to merge 1 commit into from

Conversation

QuentinFchx
Copy link
Contributor

Infinity is a value and should not be treated as an empty string

Closes #10421

Infinity is a value and should not be treated as an empty string

Closes #10421
@googlebot
Copy link

CLAs look good, thanks!


var isNegative = number < 0;
number = Math.abs(number);

var isInfinity = number === Infinity;
if (!isInfinity && !isFinite(number)) return '';
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This will return '' for -Infinity --- just use IsNaN() imho --- or number !== number

@QuentinFchx
Copy link
Contributor Author

@caitp, the build is failing but it seems to be a timeout issue. I guess only admins are able to restart builds. It might not be clear for new contributors (like me). May I suggest adding a few words about this (and what to do if builds are failing) in the contributing guidelines ?

@caitp
Copy link
Contributor

caitp commented Dec 11, 2014

build failure is a flake, were having a lot of those lately (i've restarted it)

@QuentinFchx
Copy link
Contributor Author

It failed again 😖

@caitp
Copy link
Contributor

caitp commented Dec 12, 2014

it's passed now =]

@lgalfaso
Copy link
Contributor

this would be a small breaking change, but I think it is a nice addition. Let's look at this for 1.4

@lgalfaso lgalfaso added this to the 1.4.x milestone Dec 15, 2014
@lgalfaso
Copy link
Contributor

lgalfaso commented Jan 8, 2015

landed as 51d6774

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

$filter number: Could we display an Infinity symbol in case of Infinity value?
4 participants