@raven-js/cortex
Version:
Zero-dependency machine learning, AI, and data processing library for modern JavaScript
23 lines (20 loc) • 802 B
JavaScript
/**
* @author Anonyfox <max@anonyfox.com>
* @license MIT
* @see {@link https://github.com/Anonyfox/ravenjs}
* @see {@link https://ravenjs.dev}
* @see {@link https://anonyfox.com}
*/
/**
* @file Entity extraction algorithms for common text patterns.
*
* Exports specialized extraction functions for URLs, email addresses,
* social media mentions, hashtags, currency amounts, and numeric values.
* Each function uses optimized regex patterns for performance.
*/
export { extractCurrency } from "./extract-currency.js";
export { extractEmails } from "./extract-emails.js";
export { extractHashtags } from "./extract-hashtags.js";
export { extractMentions } from "./extract-mentions.js";
export { extractNumbers } from "./extract-numbers.js";
export { extractUrls } from "./extract-urls.js";