azure-mobile-apps-files
Version:
Add simple yet powerful file storage capabilities to the azure-mobile-apps server.
15 lines (12 loc) • 503 B
JavaScript
// ----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// ----------------------------------------------------------------------------
// we should use the promise constructor in configuration
var Constructor = typeof Promise === 'undefined'
? require('es6-promise').Promise
: Promise;
module.exports = {
create: function (executor) {
return new Constructor(executor);
}
};