Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

commonform-regexp-annotator

Package Overview
Dependencies
Maintainers
1
Versions
7
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

commonform-regexp-annotator

create Common Form annotators from lists of regular expressions

  • 1.1.1
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

The module exports a single function that takes an array of RegExp and a function for generating annotations and returns an annotator function to apply to Common Forms.

Include capture groups and flags in your RegExp as needed to match and generate annotation messages.

var expressions = [
  new RegExp('\\b(apple(s?))\\b', 'gi'),
  /\b(thereof)\b/
]

The annotation function receives the form in which a RegExp was found, its path within the overall form, the RegExp that matches, and the match data from RegeExp.prototype.exec. It must return a [Common Form Annotations][annotation]

[annotation]: https://npmjs.com/packages/commonform-annotation)

function message(form, path, expression, match) {
  var word = match[1]
  return {
    message: (
      match[1].indexOf('apple') > -1
      ? ('"' + word + '" is fruity')
      : ('"' + word + '" is archaic')
    ),
    path: path,
    source: 'example-annotator',
    url: null
  }
}

var reAnnotator = require('commonform-regexp-annotator')

var annotator = reAnnotator(expressions, message)

The library does the job of finding matches and calculating paths.

var assert = require('assert')

assert.deepEqual(
  annotator({
    content: ['Drop them apples and the apple stem thereof!']
  }),
  [
    {
      message: '"apples" is fruity',
      path: ['content', 0],
      source: 'example-annotator',
      url: null
    },
    {
      message: '"apple" is fruity',
      path: ['content', 0],
      source: 'example-annotator',
      url: null
    },
    {
      message: '"thereof" is archaic',
      path: ['content', 0],
      source: 'example-annotator',
      url: null
    }
  ]
)

Keywords

FAQs

Package last updated on 10 Sep 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc