## Usage ```js var unixify = require('{%= name %}'); unixify(filepath[, stripTrailingSlash]); ``` **Strips leading drive letters and dot-slash (`./`)** ```js unixify('.\\one\\two\\three'); //=> 'one/two/three' unixify('./one/two/three'); //=> 'one/two/three' unixify('C:\\one\\two\\three'); //=> '/one/two/three' unixify('\\one\\two\\three'); //=> '/one/two/three' ``` **Normalizes path separators to forward slashes** ```js unixify('one\\two\\three'); //=> 'one/two/three' unixify('\\one\\two\\three'); //=> '/one/two/three' unixify('C:\\one\\two\\three'); //=> '/one/two/three' ``` **Combines multiple consecutive slashes** ```js unixify('one//two//////three'), //=> 'one/two/three' unixify('\\one\\two\\//three'); //=> '/one/two/three' unixify('C:\\//one\\two\\//three'); //=> '/one/two/three' ``` **Strips trailing slashes by default** ```js unixify('one//two//////three//'), //=> 'one/two/three' unixify('C:\\one\\two\\three\\'); //=> '/one/two/three' ``` **Keep trailing slashes** By passing `false` as the second argument ```js unixify('one//two//////three//'), //=> 'one/two/three/' unixify('C:\\one\\two\\three\\'); //=> '/one/two/three/' ```