mirror of
https://github.com/cp6/my-idlers.git
synced 2025-04-22 11:08:35 +00:00
6 lines
124 B
JavaScript
Vendored
6 lines
124 B
JavaScript
Vendored
"use strict";
|
|
|
|
module.exports = function (value) {
|
|
// eslint-disable-next-line no-self-compare
|
|
return value !== value;
|
|
};
|