github-actions[bot]
Update from GitHub Actions
10852fa
raw
history blame contribute delete
121 Bytes
'use strict';
/** @type {import('./isNaN')} */
module.exports = Number.isNaN || function isNaN(a) {
return a !== a;
};