mirror of
https://code.forgejo.org/actions/setup-python.git
synced 2026-03-16 20:15:54 +03:00
4 lines
82 B
JavaScript
4 lines
82 B
JavaScript
'use strict';
|
|
module.exports = Number.isNaN || function (x) {
|
|
return x !== x;
|
|
};
|