mirror of
https://github.com/IT4Change/gradido.git
synced 2026-04-06 01:25:28 +00:00
7 lines
124 B
JavaScript
7 lines
124 B
JavaScript
"use strict";
|
|
|
|
module.exports = function (value) {
|
|
// eslint-disable-next-line no-self-compare
|
|
return value !== value;
|
|
};
|