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.10.1 to 0.10.2

types/index.d.ts

19

package.json
{
"name": "ssf",
"version": "0.10.1",
"version": "0.10.2",
"author": "sheetjs",

@@ -11,13 +11,20 @@ "description": "Format data using ECMA-376 spreadsheet Format Codes",

"main": "./ssf",
"types": "types",
"dependencies": {
"frac":"~1.1.0"
"frac":"~1.1.2"
},
"devDependencies": {
"mocha":"~2.5.3",
"mocha": "~2.5.3",
"blanket": "~1.2.3",
"@sheetjs/uglify-js":"~2.7.3"
"@sheetjs/uglify-js":"~2.7.3",
"@types/node":"^8.0.7",
"dtslint": "^0.1.2",
"typescript": "2.2.0"
},
"repository": { "type":"git", "url":"git://github.com/SheetJS/ssf.git" },
"scripts": {
"test": "make test"
"test": "make test",
"build": "make",
"lint": "make fullint",
"dtslint": "dtslint types"
},

@@ -29,3 +36,3 @@ "config": {

},
"homepage": "https://oss.sheetjs.com/ssf",
"homepage": "http://sheetjs.com/opensource",
"bugs": { "url": "https://github.com/SheetJS/ssf/issues" },

@@ -32,0 +39,0 @@ "license": "Apache-2.0",

# [SheetJS SSF](http://sheetjs.com)
ssf (SpreadSheet Format) is a pure-JS library to format data using ECMA-376
ssf (SpreadSheet Format) is a pure JS library to format data using ECMA-376
spreadsheet format codes (used in popular spreadsheet software packages).

@@ -26,5 +26,4 @@

The script will manipulate `module.exports` if available (e.g. in a CommonJS
`require` context). This is not always desirable. To prevent the behavior,
define `DO_NOT_EXPORT_SSF`.
The script will manipulate `module.exports` if available . This is not always
desirable. To prevent the behavior, define `DO_NOT_EXPORT_SSF`.

@@ -45,3 +44,3 @@ ## Usage

| :---------- | :-----: | :--------------------------------------------------- |
| date1904 | false | Use 1904 date system if true, 1900 system if false |
| `date1904` | false | Use 1904 date system if true, 1900 system if false |

@@ -94,4 +93,5 @@ ### Manipulating the Internal Format Table

- [ECMA-376] Office Open XML File Formats
- [MS-XLSB] Excel (.xlsb) Binary File Format
- `ECMA-376`: Office Open XML File Formats
- `MS-XLS`: Excel Binary File Format (.xls) Structure Specification
- `MS-XLSB`: Excel (.xlsb) Binary File Format

@@ -98,0 +98,0 @@ ## Badges

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

var make_ssf = function make_ssf(SSF/*:SSFModule*/){
SSF.version = '0.10.1';
SSF.version = '0.10.2';
function _strrev(x/*:string*/)/*:string*/ { var o = "", i = x.length-1; while(i>=0) o += x.charAt(i--); return o; }

@@ -797,3 +797,3 @@ function fill(c/*:string*/,l/*:number*/)/*:string*/ { var o = ""; while(o.length < l) o+=c; return o; }

var cfregex = /\[[=<>]/;
var cfregex2 = /\[([=<>]*)(-?\d+\.?\d*)\]/;
var cfregex2 = /\[(=|>[=]?|<[>=]?)(-?\d+(?:\.\d*)?)\]/;
function chkcond(v, rr) {

@@ -800,0 +800,0 @@ if(rr == null) return false;

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

var make_ssf = function make_ssf(SSF){
SSF.version = '0.10.1';
SSF.version = '0.10.2';
function _strrev(x) { var o = "", i = x.length-1; while(i>=0) o += x.charAt(i--); return o; }

@@ -787,3 +787,3 @@ function fill(c,l) { var o = ""; while(o.length < l) o+=c; return o; }

var cfregex = /\[[=<>]/;
var cfregex2 = /\[([=<>]*)(-?\d+\.?\d*)\]/;
var cfregex2 = /\[(=|>[=]?|<[>=]?)(-?\d+(?:\.\d*)?)\]/;
function chkcond(v, rr) {

@@ -790,0 +790,0 @@ if(rr == null) return false;

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