Comparing version 0.0.5 to 0.0.6
@@ -6,3 +6,3 @@ /* harb.js (C) 2014 SheetJS -- http://sheetjs.com */ | ||
(function make_harb (HARB) { | ||
HARB.version = '0.0.4'; | ||
HARB.version = '0.0.6'; | ||
if (typeof exports !== 'undefined') { | ||
@@ -26,5 +26,5 @@ if (typeof module !== 'undefined' && module.exports) { | ||
var val = new Date(); | ||
val.setUTCDate(date.d); | ||
val.setUTCMonth(date.m-1); | ||
val.setUTCFullYear(date.y); | ||
val.setUTCMonth(date.m-1); | ||
val.setUTCDate(date.d); | ||
val.setUTCHours(date.H); | ||
@@ -31,0 +31,0 @@ val.setUTCMinutes(date.M); |
@@ -6,3 +6,3 @@ /* harb.js (C) 2014 SheetJS -- http://sheetjs.com */ | ||
(function make_harb (HARB) { | ||
HARB.version = '0.0.4'; | ||
HARB.version = '0.0.6'; | ||
if (typeof exports !== 'undefined') { | ||
@@ -26,5 +26,5 @@ if (typeof module !== 'undefined' && module.exports) { | ||
var val = new Date(); | ||
val.setUTCDate(date.d); | ||
val.setUTCMonth(date.m-1); | ||
val.setUTCFullYear(date.y); | ||
val.setUTCMonth(date.m-1); | ||
val.setUTCDate(date.d); | ||
val.setUTCHours(date.H); | ||
@@ -31,0 +31,0 @@ val.setUTCMinutes(date.M); |
{ | ||
"name": "harb", | ||
"version": "0.0.5", | ||
"version": "0.0.6", | ||
"author": "sheetjs", | ||
@@ -5,0 +5,0 @@ "description": "Plaintext spreadsheet (DIF / CSV / TSV / SocialCalc) parser", |
@@ -1,2 +0,2 @@ | ||
# harb | ||
# harb | ||
@@ -22,9 +22,9 @@ Host of Archaic Representations of Books (parsing). Designed to provide support | ||
npm install harb | ||
npm install harb | ||
## Usage | ||
This module houses provides support for [j](https://www.npmjs.org/package/j). See | ||
[the xlsx module](http://git.io/xlsx) for usage information, as they use the same | ||
interface and style. | ||
This module provides support for [j](https://www.npmjs.org/package/j). For usage | ||
information, consult [the xlsx module](http://git.io/xlsx) as they use the same | ||
interface and style. | ||
@@ -42,2 +42,16 @@ ## Test Files | ||
The harb.js file is constructed from the files in the `bits` subdirectory. The | ||
build script (run `make`) will concatenate the individual bits to produce the | ||
script. Before submitting a contribution, ensure that running make will produce | ||
the harb.js file exactly. The simplest way to test is to move the script: | ||
``` | ||
$ mv harb.js harb.new.js | ||
$ make | ||
$ diff harb.js harb.new.js | ||
``` | ||
To produce the dist files, run `make dist`. The dist files are updated in each | ||
version release and should not be committed between versions. | ||
## XLSX Support | ||
@@ -63,2 +77,10 @@ | ||
## References | ||
No official specification exists for any of these formats. For some formats, a | ||
"reference implementation" is the specification. When implementations disagree, | ||
Excel's interpretation is assumed to be correct (unless Excel does not support | ||
the format, in which case the application that introduced the format is assumed | ||
to be correct). | ||
## Badges | ||
@@ -65,0 +87,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
408257
90