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

raml-typesystem

Package Overview
Dependencies
Maintainers
2
Versions
95
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

raml-typesystem - npm Package Compare versions

Comparing version 0.0.51 to 0.0.52

3

dist/src/xmlUtil.js

@@ -77,2 +77,5 @@ "use strict";

Object.keys(root).forEach(function (key) {
if (key == "$") {
return;
}
if (key.indexOf('@') === 0) {

@@ -79,0 +82,0 @@ var attribute = { key: key, value: root[key] };

2

package.json
{
"name": "raml-typesystem",
"version": "0.0.51",
"version": "0.0.52",
"main": "dist/src/index.js",

@@ -5,0 +5,0 @@ "scripts": {

@@ -35,3 +35,2 @@ /// <reference path="../typings/main.d.ts" />

var attributes = root['$'] || {};
Object.keys(attributes).forEach(key => {

@@ -105,2 +104,5 @@ result = result + ' ' + key + '="' + attributes[key] + '"';

Object.keys(root).forEach(key => {
if(key=="$"){
return;
}
if(key.indexOf('@') === 0) {

@@ -107,0 +109,0 @@ var attribute = {key: key, value: root[key]};

Sorry, the diff of this file is not supported yet

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