UNPKG

408 BJavaScriptView Raw
1var $;
2
3$ = {};
4
5$.formatArgument = require('../dist/formatArgument');
6
7$.normalizePath = require('../dist/normalizePath');
8
9module.exports = function(source) {
10 var groupSource, i, len, results;
11 groupSource = $.formatArgument(source);
12 results = [];
13 for (i = 0, len = groupSource.length; i < len; i++) {
14 source = groupSource[i];
15 results.push($.normalizePath(source));
16 }
17 return results;
18};