locutus
Version:
Locutus other languages' standard libraries to JavaScript for fun and educational purposes
29 lines (28 loc) • 1.32 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.array_replace = array_replace;
const _phpTypes_ts_1 = require("../_helpers/_phpTypes.js");
function array_replace(arr, firstReplacement, ...additionalReplacements) {
// discuss at: https://locutus.io/php/array_replace/
// original by: Brett Zamir (https://brett-zamir.me)
// example 1: array_replace(["orange", "banana", "apple", "raspberry"], {0 : "pineapple", 4 : "cherry"}, {0:"grape"})
// returns 1: {0: 'grape', 1: 'banana', 2: 'apple', 3: 'raspberry', 4: 'cherry'}
const retObj = {};
// Although docs state that the arguments are passed in by reference,
// it seems they are not altered, but rather the copy that is returned
// (just guessing), so we make a copy here, instead of acting on arr itself
const arrObject = (0, _phpTypes_ts_1.toPhpArrayObject)(arr);
for (const p in arrObject) {
retObj[p] = arrObject[p];
}
for (const replacement of [firstReplacement, ...additionalReplacements]) {
if (!(0, _phpTypes_ts_1.isObjectLike)(replacement)) {
continue;
}
const current = (0, _phpTypes_ts_1.toPhpArrayObject)(replacement);
for (const p in current) {
retObj[p] = current[p];
}
}
return retObj;
}