2.0.0 • Published 7 years ago
is-changelog-path v2.0.0
is-changelog-path
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'); //=> falseInstallation
npm install is-changelog-pathAPI
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'])); //=> falseLicense
ISC License © 2018 Shinnosuke Watanabe