• This project
    • Loading...
  • Sign in

2020-1-capstone-design1 / KHY_Project1

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • KHY_Project1
  • ..
  • utils
  • is-number.js
  • 허진호's avatar
    ui 수정 · 86aabfa8
    86aabfa8
    허진호 authored 2020-06-17 16:25:00 +0900
is-number.js 169 Bytes
Raw Blame History Permalink
1 2 3 4 5 6
export default function isNumber(input) {
    return (
        typeof input === 'number' ||
        Object.prototype.toString.call(input) === '[object Number]'
    );
}