You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
271 B

3 months ago
  1. function hasSameValues(property) {
  2. var firstValue = property.value[0][1];
  3. var i, l;
  4. for (i = 1, l = property.value.length; i < l; i++) {
  5. if (property.value[i][1] != firstValue) {
  6. return false;
  7. }
  8. }
  9. return true;
  10. }
  11. module.exports = hasSameValues;