dot-language-support
Advanced tools
Comparing version 1.3.9 to 1.3.10
@@ -7,4 +7,6 @@ "use strict"; | ||
if (s != null && typeof Object.getOwnPropertySymbols === "function") | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) if (e.indexOf(p[i]) < 0) | ||
t[p[i]] = s[p[i]]; | ||
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) { | ||
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i])) | ||
t[p[i]] = s[p[i]]; | ||
} | ||
return t; | ||
@@ -11,0 +13,0 @@ }; |
{ | ||
"name": "dot-language-support", | ||
"version": "1.3.9", | ||
"version": "1.3.10", | ||
"description": "Parser and language service for graphviz (dot) files", | ||
@@ -32,7 +32,7 @@ "author": "Niklas Mollenhauer", | ||
"@types/chai": "^4.1.7", | ||
"@types/mocha": "^5.2.6", | ||
"@types/mocha": "^5.2.7", | ||
"chai": "^4.2.0", | ||
"mocha": "^6.1.4", | ||
"ts-node": "^8.1.0", | ||
"typescript": "^3.4.4", | ||
"mocha": "^6.2.0", | ||
"ts-node": "^8.3.0", | ||
"typescript": "^3.5.3", | ||
"vscode-languageserver": "^5.3.0-next.1" | ||
@@ -39,0 +39,0 @@ }, |
182515
5358