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

sf

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sf - npm Package Compare versions

Comparing version 0.1.7 to 0.1.8

2

package.json

@@ -10,3 +10,3 @@ {

],
"version": "0.1.7",
"version": "0.1.8",
"engines": {

@@ -13,0 +13,0 @@ "node": ">=0.6.0"

@@ -821,12 +821,13 @@ 'use strict';

var module;
if(module) {
if (typeof module !== 'undefined' && module.exports) {
module.exports = sf;
}
var window;
if (window) {
define([], function() {
return sf;
});
var define;
if (typeof define === 'function') {
try {
define([], function() {
return sf;
});
} catch(e) {}
}

@@ -534,3 +534,9 @@ var sf = require('../');

test.done();
},
'curly brace - issue #1': function(test) {
var result = sf('{{1{test}}}', { test: 1 });
test.equals('{11}', result);
test.done();
}
};
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