• This project
    • Loading...
  • Sign in

2020-1-CloudComputing-E / E_Team_KhuBox

%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
  • E_Team_KhuBox
  • khubox-front
  • src
  • common
  • validators.js
  • Woojin Lee's avatar
    Add react dashboard template · 817b41e3
    817b41e3
    Woojin Lee authored 2020-05-03 19:54:59 +0900
validators.js 149 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9
const checked = (value, options) => {
  if (value !== true) {
    return options.message || 'must be checked';
  }
};

export default {
  checked
};