site_opytex/theme/node_modules/replace-ext
Bertrand Benjamin 5b475a2f38 Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
..
test Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
.npmignore Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
.travis.yml Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
LICENSE Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
README.md Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
index.js Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00
package.json Feat: import work and verify compilation 2020-06-24 08:26:04 +02:00

README.md

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