Socket
Socket
Sign inDemoInstall

@bbob/plugin-helper

Package Overview
Dependencies
Maintainers
1
Versions
40
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@bbob/plugin-helper - npm Package Compare versions

Comparing version 2.5.2 to 2.5.3

16

CHANGELOG.md

@@ -6,2 +6,18 @@ # Change Log

<a name="2.5.3"></a>
## [2.5.3](https://github.com/JiLiZART/bbob/compare/v2.4.1...v2.5.3) (2019-08-11)
### Bug Fixes
* **plugin-helper:** avoid some malformed attributes in attrsToString ([#26](https://github.com/JiLiZART/bbob/issues/26)) ([09ff9af](https://github.com/JiLiZART/bbob/commit/09ff9af))
### Features
* **plugin-helper:** lowercase resulting tag names ([#42](https://github.com/JiLiZART/bbob/issues/42)) ([597c2a9](https://github.com/JiLiZART/bbob/commit/597c2a9))
<a name="2.5.2"></a>

@@ -8,0 +24,0 @@ ## [2.5.2](https://github.com/JiLiZART/bbob/compare/v2.4.1...v2.5.2) (2019-06-30)

2

es/TagNode.js

@@ -12,3 +12,3 @@ var _createClass = function () { function defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } } return function (Constructor, protoProps, staticProps) { if (protoProps) defineProperties(Constructor.prototype, protoProps); if (staticProps) defineProperties(Constructor, staticProps); return Constructor; }; }();

this.tag = tag;
this.tag = tag.toLowerCase();
this.attrs = attrs;

@@ -15,0 +15,0 @@ this.content = [].concat(content);

@@ -18,3 +18,3 @@ 'use strict';

this.tag = tag;
this.tag = tag.toLowerCase();
this.attrs = attrs;

@@ -21,0 +21,0 @@ this.content = [].concat(content);

{
"name": "@bbob/plugin-helper",
"version": "2.5.2",
"version": "2.5.3",
"description": "Set of utils to help write plugins for @bbob/core",

@@ -5,0 +5,0 @@ "keywords": [

@@ -6,3 +6,3 @@ import { OPEN_BRAKET, CLOSE_BRAKET, SLASH } from './char';

constructor(tag, attrs, content) {
this.tag = tag;
this.tag = tag.toLowerCase();
this.attrs = attrs;

@@ -9,0 +9,0 @@ this.content = [].concat(content);

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