Files
shadowsocks-over-websocket/node_modules/number-is-nan/index.js
VincentChanX 8d31c899b1 init
2017-04-06 09:21:19 +08:00

5 lines
82 B
JavaScript

'use strict';
module.exports = Number.isNaN || function (x) {
return x !== x;
};