UNPKG

azurite

Version:

A lightweight server clone of Azure Blob Storage that simulates most of the commands supported by it with minimal dependencies.

12 lines (11 loc) 312 B
class Container { constructor(name, props, metaProps, optional) { this.name = name; this.httpProps = props || {}; this.metaProps = metaProps || {}; if (optional) { this.access = optional.access || 'private' } } } module.exports = Container;