Improve Jqhtml_Integration.js documentation with hydration system explanation Add jqhtml-laravel integration packages for traditional Laravel projects 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
15 lines
271 B
JavaScript
15 lines
271 B
JavaScript
function hasSameValues(property) {
|
|
var firstValue = property.value[0][1];
|
|
var i, l;
|
|
|
|
for (i = 1, l = property.value.length; i < l; i++) {
|
|
if (property.value[i][1] != firstValue) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
module.exports = hasSameValues;
|