# isPositiveZerof
> Test if a single-precision floating-point numeric value is positive zero.
## Usage
```javascript
var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' );
```
#### isPositiveZerof( x )
Tests if a single-precision floating-point `numeric` value is positive zero.
```javascript
var bool = isPositiveZerof( 0.0 );
// returns true
bool = isPositiveZerof( -0.0 );
// returns false
```
## Examples
```javascript
var isPositiveZerof = require( '@stdlib/math/base/assert/is-positive-zerof' );
var bool = isPositiveZerof( 0.0 );
// returns true
bool = isPositiveZerof( -0.0 );
// returns false
bool = isPositiveZerof( 5.0 );
// returns false
bool = isPositiveZerof( -1.0 );
// returns false
bool = isPositiveZerof( NaN );
// returns false
```