mirror of
https://github.com/biobulkbende/biobulkbende.org.git
synced 2025-01-13 11:36:22 +00:00
6 lines
88 B
JavaScript
6 lines
88 B
JavaScript
'use strict';
|
|
|
|
module.exports = Number.isNaN || function isNaN(a) {
|
|
return a !== a;
|
|
};
|