Sha256: ec353c77caf9ff7fd3a157d2b32b767076127dfc0629ac10a7bcf58d3df46968

Contents?: true

Size: 505 Bytes

Versions: 59

Compression:

Stored size: 505 Bytes

Contents

/*!
 * normalize-path <https://github.com/jonschlinkert/normalize-path>
 *
 * Copyright (c) 2014-2017, Jon Schlinkert.
 * Released under the MIT License.
 */

var removeTrailingSeparator = require('remove-trailing-separator');

module.exports = function normalizePath(str, stripTrailing) {
  if (typeof str !== 'string') {
    throw new TypeError('expected a string');
  }
  str = str.replace(/[\\\/]+/g, '/');
  if (stripTrailing !== false) {
    str = removeTrailingSeparator(str);
  }
  return str;
};

Version data entries

59 entries across 49 versions & 18 rubygems

Version Path
optimacms-0.1.61 spec/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.18.0 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.18.2 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.16.1 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.15.2 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.18.4 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.18.1 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.12.7.pre.puma.pre.3 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.14.0 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
disco_app-0.13.6.pre.puma.pre.3 test/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
tang-0.2.1 spec/tang_app/node_modules/anymatch/node_modules/normalize-path/index.js
groonga-client-model-6.0.0 test/apps/rails6.1.3/node_modules/anymatch/node_modules/normalize-path/index.js
groonga-client-model-6.0.0 test/apps/rails6.0.3.5/node_modules/anymatch/node_modules/normalize-path/index.js
ruby2js-4.0.4 lib/tasks/testrails/node_modules/anymatch/node_modules/normalize-path/index.js
ruby2js-4.0.3 lib/tasks/testrails/node_modules/anymatch/node_modules/normalize-path/index.js
tang-0.2.0 spec/tang_app/node_modules/anymatch/node_modules/normalize-path/index.js
tang-0.1.0 spec/tang_app/node_modules/anymatch/node_modules/normalize-path/index.js
tang-0.0.9 spec/tang_app/node_modules/anymatch/node_modules/normalize-path/index.js
enju_library-0.3.8 spec/dummy/node_modules/anymatch/node_modules/normalize-path/index.js
jass-0.9.5 vendor/node_modules/normalize-path/index.js