collect-mentions
Collect mentions from a given text string, using battle-tested mentions-regex package
If you have any how-to kind of questions, please read the Contributing Guide
and Code of Conduct documents.
For bugs reports and feature requests, please create an issue or ping
@tunnckoCore at Twitter.
Table of Contents
Install
This project requires Node.js >=20. Install it using
yarn or npm.
We highly recommend to use Yarn when you think to contribute to this project.
$ yarn add collect-mentions
API
Collect all mentions from string. Returns array of objects with properties
{ handle, mention, index }
.
Params
str
{String}: string to collect mentions fromdot
{Boolean}: if it is true
, it will support mentions including dotreturns
{Array}: array of objects
Example
import collectMentions from 'collect-mentions';
const mentions = collectMentions('foo @tunnckoCore and yeah @bar, right?');
console.log(mentions);
console.log(collectMentions('some @ok.bar yeah', true));
back to top
Related Projects
Some of these projects are used here or were inspiration for this one, others are just related. So,
thanks for your existance!
back to top
Contributing
Please read the Contributing Guide and Code of Conduct
documents for advices.
For bugs reports and feature requests, please create an issue or ping
@tunnckoCore at Twitter.
Contributors
Thanks to the hard work of these wonderful people this project is alive and it
also follows the all-contributors specification.
Pull requests, stars and all
kind of contributions are
always welcome. :stars:
Users
You can see who uses collect-mentions
in the USERS.md file. Please feel free adding
this file if it not exists.
If you or your organization are using this project, consider adding yourself to the list of users.
Thank You! :heart:
License
Copyright (c) 2017-present, Charlike Mike Reagent.
Released under the Apache-2.0 License.
This file was generated by verb-generate-readme,
v0.7.0, on July 25, 2018.