forked from sheetjs/sheetjs
SheetJS
d31879d702
- removed ssf_node.js: scripts should define DO_NOT_EXPORT_SSF to prevent export - added ssf binary - updated frac to 0.3.0 - entire table can be pulled and saved - choose_fmt and format functions can take an external table - LICENSE year updated - removed unused tests
11 lines
410 B
JavaScript
Executable File
11 lines
410 B
JavaScript
Executable File
#!/usr/bin/env node
|
|
/* ssf.js (C) 2013-2014 SheetJS -- http://sheetjs.com */
|
|
var SSF = require('../');
|
|
var argv = process.argv.slice(2);
|
|
if(argv.length < 2 || argv[0] == "-h" || argv[0] == "--help") {
|
|
console.error("usage: ssf <format> <value>");
|
|
console.error("output: format_as_string|format_as_number");
|
|
process.exit(0);
|
|
}
|
|
console.log(SSF.format(argv[0],argv[1]) + "|" + SSF.format(argv[0],+(argv[1])));
|