UNPKG

akamai-nginx

Version:

generate nginx config from akamai property

16 lines (12 loc) 364 B
import { Behavior } from '../behavior.js'; export class BehaviorAllowPut extends Behavior { constructor(options, valueMap) { super(); this.options = options; this.valueMap = valueMap; } process() { return this.processRequestMethodOptions('PUT', this.options); } } Behavior.register('allowPut', BehaviorAllowPut);