@membrane/membrane-sdk-js
Advanced tools
Comparing version 0.2.4 to 0.2.5
@@ -116,3 +116,3 @@ "use strict"; | ||
var name; | ||
if (isLowerCase(this.code) || isDigit(this.code) || this.code === _POUND) { | ||
if (isLowerCase(this.code) || isDigit(this.code) || this.code === _POUND || this.code === _AT) { | ||
name = this.parseProgramIdentifier(); | ||
@@ -148,3 +148,4 @@ } | ||
!isDigit(this.code) && | ||
!this.code === _POUND) { | ||
!this.code === _POUND && | ||
!this.code === _AT) { | ||
throw this.syntaxError("Expected program identifier"); | ||
@@ -401,2 +402,3 @@ } | ||
var _POUND = "#".charCodeAt(0); | ||
var _AT = "@".charCodeAt(0); | ||
var _BRACKETOPEN = "[".charCodeAt(0); | ||
@@ -403,0 +405,0 @@ var _BRACKETCLOSE = "]".charCodeAt(0); |
{ | ||
"name": "@membrane/membrane-sdk-js", | ||
"version": "0.2.4", | ||
"version": "0.2.5", | ||
"description": "Helpers for working with Membrane", | ||
@@ -5,0 +5,0 @@ "license": "MIT", |
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
112648
2949