Newer
Older
vmk-demo-bot / frontend / node_modules / vinyl / lib / normalize.js
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 150 bytes init
'use strict';

var path = require('path');

function normalize(str) {
  return str === '' ? str : path.normalize(str);
}

module.exports = normalize;