ext-ext

0.1.2 • Public • Published

ext-ext NPM version

Extension of the node.js path.extname method.

Install

Install with npm:

npm i ext-ext --save-dev

Usage

var ext = require('ext-ext');
var filepath = 'foo/bar/baz.min.js';
 
console.log(ext(filepath));
//=> '.min.js'
 
console.log(ext(filepath, {extDot: 'first'}));
//=> '.min'
 
console.log(ext(filepath, {extDot: 'last'}));
//=> '.js'

See the tests for more examples.

Tests

In the command line, run:

mocha

Author

Jon Schlinkert

License

Copyright (c) 2014 Jon Schlinkert, contributors.
Released under the MIT license


This file was generated by verb-cli on June 17, 2014.

Package Sidebar

Install

npm i ext-ext

Weekly Downloads

6

Version

0.1.2

License

none

Last publish

Collaborators

  • jonschlinkert