mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-20 20:01:31 +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;
|
|
};
|