can-stache-bindings
Advanced tools
Comparing version 3.6.2 to 3.6.3
@@ -898,3 +898,4 @@ // # can-stache-bindings.js | ||
var endsWith = String.prototype.endsWith || function(text){ | ||
return this.lastIndexOf(text) === (this.length - text.length); | ||
var lastIndex = this.lastIndexOf(text); | ||
return lastIndex !== -1 && lastIndex === (this.length - text.length); | ||
}; | ||
@@ -901,0 +902,0 @@ // Regular expressions for getBindingInfo |
{ | ||
"name": "can-stache-bindings", | ||
"version": "3.6.2", | ||
"version": "3.6.3", | ||
"description": "Default binding syntaxes for can-stache", | ||
@@ -5,0 +5,0 @@ "homepage": "http://canjs.com", |
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
202244
4422