We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent affa4ad commit baa650eCopy full SHA for baa650e
app/code/Magento/Checkout/view/frontend/web/js/model/address-converter.js
@@ -104,7 +104,7 @@ define([
104
}
105
});
106
107
- if ($.isArray(addrs.street)) {
+ if (Array.isArray(addrs.street)) {
108
streetObject = {};
109
addrs.street.forEach(function (value, index) {
110
streetObject[index] = value;
@@ -113,7 +113,7 @@ define([
113
114
115
//jscs:disable requireCamelCaseOrUpperCaseIdentifiers
116
- if ($.isArray(addrs.customAttributes)) {
+ if (Array.isArray(addrs.customAttributes)) {
117
customAttributesObject = {};
118
addrs.customAttributes.forEach(function (value) {
119
customAttributesObject[value.attribute_code] = value.value;
0 commit comments