blob: cb8631dca6c00e507c1146b8400c09c5369835c0 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001'use strict';
2
3module.exports = Number.isNaN || function isNaN(a) {
4 return a !== a;
5};