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

ssf

Package Overview
Dependencies
Maintainers
1
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ssf - npm Package Compare versions

Comparing version 0.4.0 to 0.4.1

2

package.json
{
"name": "ssf",
"version": "0.4.0",
"version": "0.4.1",
"author": "SheetJS",

@@ -5,0 +5,0 @@ "description": "pure-JS library to format data using ECMA-376 spreadsheet Format Codes",

@@ -260,3 +260,3 @@ /* ssf.js (C) 2013 SheetJS -- http://sheetjs.com */

case '"': /* Literal text */
for(o="";fmt[++i] !== '"';) o += fmt[i];
for(o="";fmt[++i] !== '"' && i < fmt.length;) o += fmt[i];
out.push({t:'t', v:o}); ++i; break;

@@ -263,0 +263,0 @@ case '\\': var w = fmt[++i], t = "()".indexOf(w) === -1 ? 't' : w;

@@ -260,3 +260,3 @@ /* ssf.js (C) 2013 SheetJS -- http://sheetjs.com */

case '"': /* Literal text */
for(o="";fmt[++i] !== '"';) o += fmt[i];
for(o="";fmt[++i] !== '"' && i < fmt.length;) o += fmt[i];
out.push({t:'t', v:o}); ++i; break;

@@ -263,0 +263,0 @@ case '\\': var w = fmt[++i], t = "()".indexOf(w) === -1 ? 't' : w;

@@ -429,7 +429,10 @@ # SSF

Text between double-quotes are treated literally, and individual characters are
literal if they are preceded by a slash:
literal if they are preceded by a slash.
The additional `i < fmt.length` guard was added due to potentially unterminated
strings generated by LO:
```
case '"': /* Literal text */
for(o="";fmt[++i] !== '"';) o += fmt[i];
for(o="";fmt[++i] !== '"' && i < fmt.length;) o += fmt[i];
out.push({t:'t', v:o}); ++i; break;

@@ -809,3 +812,3 @@ case '\\': var w = fmt[++i], t = "()".indexOf(w) === -1 ? 't' : w;

"name": "ssf",
"version": "0.4.0",
"version": "0.4.1",
"author": "SheetJS",

@@ -812,0 +815,0 @@ "description": "pure-JS library to format data using ECMA-376 spreadsheet Format Codes",

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