12 lines
200 B
JavaScript
12 lines
200 B
JavaScript
module.exports = function createExpectedPropertiesOrder(input) {
|
|
const order = {};
|
|
|
|
input.forEach((property, propertyIndex) => {
|
|
order[property] = {
|
|
propertyIndex,
|
|
};
|
|
});
|
|
|
|
return order;
|
|
};
|