raml-typesystem
Advanced tools
Comparing version 0.0.51 to 0.0.52
@@ -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] }; |
{ | ||
"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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1909652
42488