forked from sheetjs/sheetjs
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			526 B
		
	
	
	
		
			TypeScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			526 B
		
	
	
	
		
			TypeScript
		
	
	
		
			Executable File
		
	
	
	
	
| /* ssf.js (C) 2013-present SheetJS -- http://sheetjs.com */
 | |
| /* eslint-env node */
 | |
| /* eslint no-console:0 */
 | |
| /*jshint node:true */
 | |
| /// <reference types="../node_modules/@types/node/" />
 | |
| import X = require('ssf');
 | |
| const 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(X.format(argv[0],argv[1]) + "|" + X.format(argv[0],+(argv[1])) + "|");
 |