4.0.0 • Published 4 years ago

rename-extension v4.0.0

Weekly downloads
309
License
MIT
Repository
github
Last release
4 years ago

rename-extension

Travis Build Status Coverage Status Dependencies Greenkeeper badge

A function that changes the the extension of a given filename or path.

Install

npm install rename-extension

Usage

const renameExtension = require('rename-extension')

renameExtension('a/b/c.js', null) // a/b/c
renameExtension('a/b/c.js', '.css') // a/b/c.css
renameExtension('a/b/c.min.js', '.css') // a/b/c.min.css
renameExtension('a/b/.npmrc', null) // a/b/.npmrc
renameExtension('a/b/.npmrc', '.json') // a/b/.npmrc.json

API

Parameters

  • filePath {String} Path to a file.
  • newExt {String} New extension for the file.

Returns

  • filePath {String} Path ending with the new extension.