mirror of
https://github.com/wishthis/wishthis.git
synced 2025-12-28 01:38:17 -05:00
10 lines
150 B
JavaScript
10 lines
150 B
JavaScript
'use strict';
|
|
|
|
var path = require('path');
|
|
|
|
function normalize(str) {
|
|
return str === '' ? str : path.normalize(str);
|
|
}
|
|
|
|
module.exports = normalize;
|