extchange
v1.0.0
Published
Changes the extension of a filename to a new one
Downloads
2
Maintainers
Readme
extchange
A very simple program to change the extension of a filename
Installation
npm install --save extchange
Usage
var extChange = require("extchange"), inFileName = "foo.css", outFileName;
... outFileName = extChange(inFileName, "html"); ...
The value of outFileName will be "foo.html"