(options)
| 102 | exports.openZip = openZip; |
| 103 | |
| 104 | function openZip(options) { |
| 105 | if (options.arrayBuffer) { |
| 106 | return promises.resolve(zipfile.openArrayBuffer(options.arrayBuffer)); |
| 107 | } else { |
| 108 | return promises.reject(new Error("Could not find file in options")); |
| 109 | } |
| 110 | } |
| 111 | |
| 112 | },{"../lib/promises":23,"../lib/zipfile":38}],3:[function(require,module,exports){ |
| 113 | var _ = require("underscore"); |
nothing calls this directly
no outgoing calls
no test coverage detected