Socket
Socket
Sign inDemoInstall

opts-parser

Package Overview
Dependencies
1
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    opts-parser

A very simple options string parser similiar to CSS.


Version published
Weekly downloads
62
increased by44.19%
Maintainers
1
Install size
84.6 kB
Created
Weekly downloads
 

Readme

Source

opts-parser

GratiPay Build Status Coverage Downloads Version

Parses key/value pairs into hash object. The source format looks like HTML's style attribute, see below for more details.

This was an old school way of passing random canfiguration values through class attribute into SyntaxHighlighter. Why not use data-* attributes? Well, back in 2002 those didn't exist... Yes, this could be modernized a bit, at the same time there are hundreds of thousands active usages now.

Important

This module depends on a verion of XRegExp that is bundled in syntaxhighlighter-regex. At the time of writing, the bundled version 3.1.0-dev is unreleased.

Installation

npm install opts-parser

Usage Example

var opts = require('opts-parser');
opts.parse("hello: value; foo-bar: [12, "monkeys"]; value: 'value'");

{
  "hello": "value",
  "foo-bar": [12, "monkeys"],
  "fooBar": [12, "monkeys"],
  "value": "value
}

Understands the following formats:

  • name: true|false;
  • name: word;
  • name: [word, word];
  • name: "string";
  • name: 'string';

Testing

npm test

License

MIT

Keywords

FAQs

Last updated on 07 Feb 2016

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc