hashtagfy2
v1.0.3
Published
Convert any text to #hashtag
Downloads
47
Maintainers
Readme
hashtagfy2
Convert any text to #hashtag. This fork of hashtagfy replace string template with string concatenation.
Installation
npm install --save hashtagfy2
How to use
const hashtagfy = require('hashtagfy2')
const hashtag1 = hashtagfy('Any text');
// hashtag1 == '#AnyText'
const hashtag2 = hashtagfy('Similar-text_more');
// hashtag2 == '#SimilarTextMore'
const hashtag3 = hashtagfy('And the last', { capitalize: false });
// hashtag3 == '#andthelast'
NOTE: The capitalize
option is optional. Is true
by default.