📗 SheetJS Community Edition -- Spreadsheet Data Toolkit https://sheetjs.com
Go to file
SheetJS fc9835e819 version bump 0.3.0: support for standard formats
Many cases are hard-coded and should be parsed before version 1.0
2013-12-16 10:36:22 -05:00
test version bump 0.3.0: support for standard formats 2013-12-16 10:36:22 -05:00
.travis.yml Initial commit 2013-12-06 11:49:25 -05:00
LICENSE Initial commit 2013-12-06 11:49:25 -05:00
Makefile version bump 0.2.1: more support for implied types 2013-12-13 22:28:57 -05:00
README.md Initial commit 2013-12-06 11:49:25 -05:00
package.json version bump 0.3.0: support for standard formats 2013-12-16 10:36:22 -05:00
ssf.js version bump 0.3.0: support for standard formats 2013-12-16 10:36:22 -05:00
ssf.md version bump 0.3.0: support for standard formats 2013-12-16 10:36:22 -05:00
ssf_node.js version bump 0.3.0: support for standard formats 2013-12-16 10:36:22 -05:00

SSF

SpreadSheet Format (SSF) is a pure-JS library to format data using ECMA-376 spreadsheet format codes (like those used in Microsoft Excel)

This is written in voc -- see ssf.md for code.

To build: voc ssf.md

Setup

In the browser:

<script src="ssf.js"></script>

In node:

var SSF = require('ssf');

Usage

.load(fmt, idx) sets custom formats (generally indices above 164)

.format(fmt, val) formats val using the format fmt. If fmt is of type number, the internal table (and custom formats) will be used. If fmt is a literal format, then it will be parsed and evaluated.

Notes

Format code 14 in the spec is broken; the correct format is 'mm/dd/yy' (dashes, not spaces)

License

Apache 2.0