- simplified utf8 code - added browser demo - added command line tool adler32 - fixed unicode baseline script (node 6 changed default array printing) - fixed performance tests (benchmark module changed behavior) - updated travis versions for test - miscellaneous adjustments to tooling
11 lines
190 B
JavaScript
11 lines
190 B
JavaScript
/*::
|
|
type ArrayLike = any;
|
|
type Stringifier = {(d:ArrayLike):string};
|
|
|
|
declare class ADLER32Module {
|
|
bstr(s:string):ADLER32Type;
|
|
buf(b:ABuf):ADLER32Type;
|
|
str(s:string):ADLER32Type;
|
|
};
|
|
*/
|