is-changelog-path

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


Keywords
check, if, boolean, filename, name, path, changelog, change-log, updates, releases, release-history, history, releasenote, match, javascript, nodejs, release-notes
License
ISC
Install
npm install is-changelog-path@2.0.0

Documentation

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