number.js 63 Bytes
Newer Older
Muddsair Sharif's avatar
Muddsair Sharif committed
1
2
3
export default function(x) {
  return x === null ? NaN : +x;
}