mirror of
https://kevinblog.sytes.net/Code/Jibo-Revival-Group/RoboCommander.git
synced 2026-06-15 13:46:05 +00:00
5 lines
82 B
JavaScript
5 lines
82 B
JavaScript
'use strict';
|
|
module.exports = Number.isNaN || function (x) {
|
|
return x !== x;
|
|
};
|