• 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
  • abs-ceil.js
  • 허진호's avatar
    ui 수정 · 86aabfa8
    86aabfa8
    허진호 authored 2020-06-17 16:25:00 +0900
abs-ceil.js 154 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7
export default function absCeil(number) {
    if (number < 0) {
        return Math.floor(number);
    } else {
        return Math.ceil(number);
    }
}