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
309 B

  1. 'use strict';
  2. var path = require('path');
  3. var SPEC_FILE_EXT = '.json';
  4. module.exports.parseSpecFilename = function (name) {
  5. var filename = path.parse(name);
  6. var foldername = filename.dir.split(path.sep).splice(-1)[0];
  7. return [path.sep, foldername, path.sep, filename.name, SPEC_FILE_EXT].join('');
  8. };