mirror of https://gitee.com/bigwinds/arangodb
15 lines
289 B
JavaScript
15 lines
289 B
JavaScript
'use strict';
|
|
|
|
|
|
var assert = require('assert');
|
|
|
|
var isNegativeZero = require('../../lib/js-yaml/common').isNegativeZero;
|
|
|
|
|
|
test('isNegativeZero', function () {
|
|
assert(!isNegativeZero(0));
|
|
assert(!isNegativeZero(0.0));
|
|
assert(isNegativeZero(-0));
|
|
assert(isNegativeZero(-0.0));
|
|
});
|