wallet-core/node_modules/replace-ext
2017-05-03 15:35:00 +02:00
..
test node_modules 2017-05-03 15:35:00 +02:00
.npmignore node_modules 2017-05-03 15:35:00 +02:00
.travis.yml node_modules 2017-05-03 15:35:00 +02:00
index.js Reorganize module loading. 2017-04-24 16:14:29 +02:00
LICENSE Reorganize module loading. 2017-04-24 16:14:29 +02:00
package.json Reorganize module loading. 2017-04-24 16:14:29 +02:00
README.md Reorganize module loading. 2017-04-24 16:14:29 +02:00

replace-ext NPM version Build Status Coveralls Status Dependency Status

Information

Packagereplace-ext
Description Replaces a file extension with another one
Node Version >= 0.4

Usage

var replaceExt = require('replace-ext');

var path = '/some/dir/file.js';
var npath = replaceExt(path, '.coffee');

console.log(npath); // /some/dir/file.coffee