ext-ext

Extension of the node.js path.extname method.

3 个版本
安装
npm install ext-ext
yarn add ext-ext
pnpm add ext-ext
bun add ext-ext
README

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.

版本列表
0.1.2 2014-06-28
0.1.1 2014-06-28
0.1.0 2014-06-17