When the response data is a boolean "false", numeric "0" or an empty string the restangular response returns it as an empty object.
|
configuration.defaultResponseInterceptor = function (data /*, operation, what, url, response, subject */) { |
configuration.defaultResponseInterceptor = function (data /*, operation, what, url, response, subject */) {
return data || {};
};
When the response data is a boolean "false", numeric "0" or an empty string the restangular response returns it as an empty object.
ngx-restangular/projects/ngx-restangular/src/lib/ngx-restangular-config.factory.ts
Line 318 in 6407f48