Added package main file

This commit is contained in:
Vitaly Puzrin 2014-02-03 22:56:46 +04:00
parent 5d14848c85
commit 2a73de5f69
2 changed files with 30 additions and 2 deletions

View file

@ -1,7 +1,14 @@
// Top level file is just a mixin of submodules & constants
'use strict';
var assign = require('./lib/zlib/utils').assign;
var deflate = require('./lib/deflate');
var inflate = require('./lib/inflate');
var constants = require('./lib/zlib/constants');
var pako = {};
assign(pako, deflate, inflate, constants);
module.exports = pako;

View file

@ -1,12 +1,33 @@
'use strict';
exports.arraySet = function(dest, src, src_offs, len, dest_offs) {
exports.assign = function(obj /*from1, from2, from3, ...*/) {
var sources = Array.prototype.slice.call(arguments, 1);
while (sources.length) {
var source = sources.shift();
if (!source) { continue }
if (typeof(source) !== 'object') {
throw new TypeError(source + 'must be non-object');
}
for (var p in source) {
if (source.hasOwnProperty(p)) {
obj[p] = source[p];
}
}
}
return obj;
};
exports.arraySet = function(dest, src, src_offs, len, dest_offs) {
for(var i=0; i<len; i++) {
dest[dest_offs + i] = src[src_offs + i];
}
}
exports.arrayCreate = function(length) {
exports.arrayCreate = function(length) {
return new Array(length);
}