cmux/node_modules/yauzl-promise/lib/promise.js
2026-01-29 17:36:26 -08:00

14 lines
222 B
JavaScript

/* --------------------
* yauzl-promise module
* Return native Promise
* ------------------*/
'use strict';
// Exports
let NativePromise;
try {
NativePromise = Promise;
} catch(e) {}
module.exports = NativePromise;