link-types

3.0.0 • Public • Published

link-types NPM Version Build Status

Parse an HTML attribute value containing link types.

Note: this library is not responsible for parsing any HTML.

Installation

Node.js >= 8 is required. To install, type this at the command line:

npm install link-types

Usage

const linkTypes = require('link-types');
 
linkTypes('nofollow');
//-> ['nofollow']
 
linkTypes(' tag  NOFOLLOW ');
//-> ['tag', 'nofollow']
 
linkTypes.map(' tag   NOFOLLOW ');
//-> { tag:true, nofollow:true }

Dependencies (0)

    Dev Dependencies (5)

    Package Sidebar

    Install

    npm i link-types

    Weekly Downloads

    10,540

    Version

    3.0.0

    License

    MIT

    Unpacked Size

    4.79 kB

    Total Files

    6

    Last publish

    Collaborators

    • stevenvachon