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

can-stache-bindings

Package Overview
Dependencies
Maintainers
9
Versions
219
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

can-stache-bindings - npm Package Compare versions

Comparing version 3.2.0-pre.2 to 3.2.0-pre.3

11

can-stache-bindings.js

@@ -43,3 +43,3 @@ // # can-stache-bindings.js

var canReflect = require("can-reflect");
var singleReference = require("can-compute/single-reference");
var singleReference = require("can-util/js/single-reference/single-reference");

@@ -749,3 +749,4 @@ var noop = function() {};

DOUBLE_CURLY_BRACE_REGEX = /\{\{/g,
encodedSpacesRegExp = /\\s/g;
encodedSpacesRegExp = /\\s/g,
encodedForwardSlashRegExp = /\\f/g;

@@ -857,4 +858,6 @@ // ## getBindingInfo

};
var decodeAttrName = function(name) {
return name.replace(encodedSpacesRegExp, " ");
var decodeAttrName = function(name){
return name
.replace(encodedSpacesRegExp, " ")
.replace(encodedForwardSlashRegExp, "/");
};

@@ -861,0 +864,0 @@

{
"name": "can-stache-bindings",
"version": "3.2.0-pre.2",
"version": "3.2.0-pre.3",
"description": "Default binding syntaxes for can-stache",

@@ -5,0 +5,0 @@ "homepage": "http://canjs.com",

Sorry, the diff of this file is too big to display

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