const pluralize = function()

in scripts/layerdiff.js [272:274]


const pluralize = function (count, noun) {
  return `${count} ${noun}` + (count > 1 ? 's' : '');
};