New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

fest

Package Overview
Dependencies
Maintainers
2
Versions
31
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

fest - npm Package Compare versions

Comparing version 0.6.3 to 0.6.4

6

lib/compile.js

@@ -689,2 +689,3 @@ var compile = (function(){

'__fest_htmlchars=/' + htmlchars.source + '/g,' +
'__fest_htmlchars_test=/' + htmlchars.source + '/,' + // We need another regex because String.replace() won't change lastIndex to 0
'__fest_short_tags = ' + JSON.stringify(short_tags) + ',' +

@@ -694,2 +695,3 @@ '__fest_element_stack = [],' +

'__fest_jschars=/' + jschars.source + '/g,' +
'__fest_jschars_test=/' + jschars.source + '/,' +
'__fest_jshash=' + JSON.stringify(jshash) + ',' +

@@ -712,3 +714,3 @@ '___fest_log_error;' +

'if (typeof s==="string") {' +
'if (__fest_jschars.test(s))return s.replace(__fest_jschars,__fest_replaceJS);' +
'if (__fest_jschars_test.test(s))return s.replace(__fest_jschars,__fest_replaceJS);' +
'} else if (typeof s==="undefined")return "";' +

@@ -718,3 +720,3 @@ 'return s;}' +

'if (typeof s==="string") {' +
'if (__fest_htmlchars.test(s))return s.replace(__fest_htmlchars,__fest_replaceHTML);' +
'if (__fest_htmlchars_test.test(s))return s.replace(__fest_htmlchars,__fest_replaceHTML);' +
'} else if (typeof s==="undefined")return "";' +

@@ -721,0 +723,0 @@ 'return s;}' +

@@ -5,3 +5,3 @@ {

"keywords": ["template", "templating", "html", "xml"],
"version": "0.6.3",
"version": "0.6.4",
"repository": {

@@ -31,6 +31,5 @@ "type": "git",

},
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-clean": "~0.4.0",
"grunt-contrib-jshint": "~0.1.1",

@@ -37,0 +36,0 @@ "grunt-contrib-watch": "~0.2.0",

@@ -512,2 +512,4 @@ # Fest [![Build Status](https://travis-ci.org/eprev/fest.png)](https://travis-ci.org/eprev/fest)

Grunt используется для валидации JS (тестов) и запуска тестов. Перед отправкой пулл-риквеста убедись, что успешно выполнены `git rebase master` и `grunt`.
Grunt используется для валидации JS (тестов) и запуска тестов. Перед отправкой пулл-риквеста убедись, что успешно выполнены `git rebase master` и `grunt`.
Если необходимо пересобрать шаблоны spec/expected, то выполните `./bin/fest-build --dir=spec/templates --exclude=*error* --compile.beautify=true --out=spec/expected/initial` и `./bin/fest-build --dir=spec/templates --exclude=*error* --compile.beautify=true --out=spec/expected/translated --translate=spec/templates/en_US.po`.

Sorry, the diff of this file is not supported yet

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