You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* build(release): update dependencies
The **parse-numeric** module provides two features:
1. `parseNumeric` is a function that converts numeric strings into Number
types.
2. `parseNumeric.isNumeric` evaluates a value and determines whether the
value can be converted to a Number type.
**parse-numeric** differs from similar modules in how it evaluates
`Strings` and what it returns:
```
parseNumeric
when given a value that is
a {string} that represents a {number}
✓ will convert the {string} to a {number}
a non-numeric {string}
✓ will return the original value
a {number}
✓ will return the {number}
an empty {string}
✓ will return the empty {string}
{null}
✓ will return {null} (1ms)
{undefined}
✓ will return {undefined}
```
and
```
parseNumeric.isNumeric
✓ returns false for non-numeric values
✓ returns true for numbers and numeric strings
✓ returns true for numbers and numeric strings
```
This commit also includes CI build features with quality gates, as well
as documentation.
GH-1
0 commit comments