Socket
Socket
Sign inDemoInstall

cavalion-blocks

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cavalion-blocks - npm Package Compare versions

Comparing version 0.9.16 to 0.9.17

3

CHANGELOG.md

@@ -0,1 +1,4 @@

### 2020-08-15 - 0.9.17
- Introducing ! syntax
### 2020-07-30 - 0.9.16

@@ -2,0 +5,0 @@ - Updating prototypes

2

package.json
{
"name": "cavalion-blocks",
"version": "0.9.16",
"version": "0.9.17",
"description": "`blocks-dot-js` `[].js`",

@@ -5,0 +5,0 @@ "main": "README.js",

"use locale, js, blocks/Blocks";
/*-
vars("uri") - specifies specific uri, if not present:
this.getSpecializer(); + this._name
*/
var locale = window.locale;

@@ -13,6 +20,14 @@ var js = require("js");

var me = this, cls = this.getSpecializer();
var uri = this.vars("uri");
var uri = this.vars("uri"), specializer;
if(this._control === null && (cls || uri)) {
this._control = B.instantiate([uri || String.format("%s<%s>", cls, this._name)], {
uri: uri || String.format("%s<%s>", cls.split(":").pop(), this._name),
if(cls) cls = cls.split("!");
if(cls.length > 1) {
specializer = cls.pop();
cls = cls.join("!");
} else {
specializer = this._name;
}
this._control = B.instantiate([uri || String.format("%s<%s>", cls, specializer)], {
uri: uri || String.format("%s<%s>", cls.split(":").pop(), specializer),
owner: this, setIsRoot: true,

@@ -19,0 +34,0 @@ loaded: function(control) {

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