MOON
Server: Apache
System: Linux vps.erhabenn.com.br 3.10.0-1160.119.1.el7.tuxcare.els2.x86_64 #1 SMP Mon Jul 15 12:09:18 UTC 2024 x86_64
User: machen (1008)
PHP: 8.2.31
Disabled: NONE
Upload Files
File: //usr/local/lib/node_modules/pm2/node_modules/js-git/lib/modes.js
"use strict";

var masks = {
  mask:   parseInt('100000', 8),
  blob:   parseInt('140000', 8),
  file:   parseInt('160000', 8)
};

var modes = module.exports = {
  isBlob: function (mode) {
    return (mode & masks.blob) === masks.mask;
  },
  isFile: function (mode) {
    return (mode & masks.file) === masks.mask;
  },
  toType: function (mode) {
    if (mode === modes.commit) return "commit";
    if (mode === modes.tree) return "tree";
    if ((mode & masks.blob) === masks.mask) return "blob";
    return "unknown";
  },
  tree:   parseInt( '40000', 8),
  blob:   parseInt('100644', 8),
  file:   parseInt('100644', 8),
  exec:   parseInt('100755', 8),
  sym:    parseInt('120000', 8),
  commit: parseInt('160000', 8)
};