wingbot
Version:
Enterprise Messaging Bot Conversation Engine
20 lines (16 loc) • 466 B
JavaScript
/**
* @author wingbot.ai
*/
;
const { EMAIL_REGEX } = require('./regexps');
/** @typedef {import('../wingbot/CustomEntityDetectionModel').EntityDetector} EntityDetector */
/** @typedef {import('../wingbot/CustomEntityDetectionModel').DetectorOptions} DetectorOptions */
/** @type {[string,EntityDetector|RegExp,DetectorOptions]} */
module.exports = [
'email',
EMAIL_REGEX,
{
anonymize: true,
clearOverlaps: true
}
];