You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

11 lines
224 B

  1. module.exports = {
  2. "mode": function (obj) {
  3. if (obj.get("server")) {
  4. return "Server";
  5. }
  6. if (obj.get("proxy")) {
  7. return "Proxy";
  8. }
  9. return "Snippet";
  10. }
  11. };