UNPKG

azion

Version:

Azion Packages for Edge Computing.

16 lines (15 loc) 310 B
/* eslint-disable */ export function inherits(ctor, superCtor) { if (!superCtor) { return; } ctor.super_ = superCtor; ctor.prototype = Object.create(superCtor.prototype, { constructor: { value: ctor, enumerable: false, writable: true, configurable: true, }, }); }