Son CV dans un terminal web en Javascript!
https://terminal-cv.gregandev.fr
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
347 B
15 lines
347 B
1 year ago
|
// Top level file is just a mixin of submodules & constants
|
||
|
'use strict';
|
||
|
|
||
|
var assign = require('./lib/utils/common').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;
|