Skip to main content
Module

x/ramda/internal/_isNumber.js

:ram: Practical functional Javascript
Very Popular
Go to Latest
File
export default function _isNumber(x) { return Object.prototype.toString.call(x) === '[object Number]';}