if (!['get', 'post'].include(this.options.method)) {
// simulate other verbs over post
params['_method'] = this.options.method;
this.options.method = 'post';
}
|
if (!['get', 'post'].include(this.options.method)) {
// simulate other verbs over post
params['_method'] = this.options.method;
this.options.method = 'post';
}
|