File "nodeBuffer.js"

Full Path: /home/cananyalcin/public_html/vendors/jszip/lib/nodeBuffer.js
File size: 168 bytes
MIME-type: text/plain
Charset: utf-8

'use strict';
module.exports = function(data, encoding){
    return new Buffer(data, encoding);
};
module.exports.test = function(b){
    return Buffer.isBuffer(b);
};