Skip to content

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

License

Notifications You must be signed in to change notification settings

shinnn/is-changelog-path

Repository files navigation

is-changelog-path

npm version Build Status codecov

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 - 2019 Shinnosuke Watanabe