You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
manuals-r-us/lib/item-has-partial-data.js

8 lines
216 B
JavaScript

"use strict";
module.exports = function itemHasPartialData(item) {
return Object.keys(item.tags).some((property) => {
let propertyTags = item.tags[property];
return propertyTags.includes("partialData");
});
};