Your IP : 216.73.217.13


Current Path : /home/deltalab/PMS/logistic-backend/node_modules/rechoir/lib/
Upload File :
Current File : //home/deltalab/PMS/logistic-backend/node_modules/rechoir/lib/extension.js

const path = require('path');

const EXTRE = /^[.]?[^.]+([.].*)$/;

module.exports = function (input) {
  var extension = EXTRE.exec(path.basename(input));
  if (!extension) {
    return;
  }
  return extension[1];
};