📗 SheetJS Community Edition -- Spreadsheet Data Toolkit https://sheetjs.com
Go to file
SheetJS e1b753f797 tweaking general format
[ci skip]
2013-12-15 01:13:59 -05:00
test version bump 0.2.3: negative number love 2013-12-14 23:50:54 -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.2.3: negative number love 2013-12-14 23:50:54 -05:00
ssf.js tweaking general format 2013-12-15 01:13:59 -05:00
ssf.md tweaking general format 2013-12-15 01:13:59 -05:00
ssf_node.js tweaking general format 2013-12-15 01:13:59 -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