is-changelog-path

2.0.0 • Public • Published

is-changelog-path

npm version Build Status Build status Coverage Status

Check if a given value is a string that looks like a CHANGELOG file path

const isChangelogPath = require('is-changelog-path');
 
// Relative paths
 
isChangelogPath('CHANGELOG.txt'); //=> true
isChangelogPath('lib/index.js'); //=> false
 
// Absolute paths
 
isChangelogPath('/Users/shinnn/docs/history.md'); //=> true
isChangelogPath('/Applications/Google Chrome.app'); //=> false

Installation

Use npm.

npm install is-changelog-path

API

const isChangelogPath = require('is-changelog-path');

isChangelogPath(filePath)

filePath: any
Return: boolean

It returns true if it takes a string whose last path portion matches changelog-filename-regex, otherwise false.

const isChangelogPath = require('is-changelog-path');
 
isChangelogPath('release-note.md'); //=> true
isChangelogPath('/Users/shinnn/release-note.md'); //=> true
 
isChangelogPath('release/-note.md'); //=> false
isChangelogPath('release-note.md.js'); //=> false
isChangelogPath('release-note.md/'); //=> false
isChangelogPath('release-note.md\\'); //=> false
 
isChangelogPath(new Set(['not', 'a', 'string'])); //=> false

License

ISC License © 2018 Shinnosuke Watanabe

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 2.0.0
    2
    • latest

Version History

Package Sidebar

Install

npm i is-changelog-path

Weekly Downloads

4

Version

2.0.0

License

ISC

Unpacked Size

4.08 kB

Total Files

4

Last publish

Collaborators

  • shinnn