MCPcopy Index your code
hub / github.com/docker/getting-started / isNumeric

Function isNumeric

app/src/static/js/react-bootstrap.js:4096–4098  ·  view source on GitHub ↗

* Tells if a given input is a number * @method * @memberof Popper.Utils * @param {*} input to check * @return {Boolean}

(n)

Source from the content-addressed store, hash-verified

4094
4095
4096function isNumeric(n) {
4097 return n !== '' && !isNaN(parseFloat(n)) && isFinite(n);
4098}
4099/**
4100 * Set the style to the given popper
4101 * @method

Callers 3

setStylesFunction · 0.85
parseOffsetFunction · 0.85
offsetFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…