summaryrefslogtreecommitdiffstats
path: root/heimdall-frontend/source/qml/ArrayExtensions.js
blob: d034a8f10f5a7ea14b1d56c3bc5910247cab3f4b (plain) (blame)
1
2
3
Array.prototype.extend = function(other) {
	other.forEach(function(item) { this.push(item) }, this);
};