mirror of
https://github.com/swc-project/swc.git
synced 2025-01-03 02:54:43 +03:00
5 lines
157 B
JavaScript
5 lines
157 B
JavaScript
|
export var _path = function(dir, file, type, nomin) {
|
||
|
var path = dir + "/" + file;
|
||
|
return nomin || (path += "-min"), path += "." + (type || CSS);
|
||
|
};
|