gpt4 book ai didi

javascript - Babel 如何转译 rest/spread 运算符

转载 作者:行者123 更新时间:2023-11-30 13:50:21 26 4
gpt4 key购买 nike

我想知道 Babel 是如何转译这段代码的?

const test = ({ val1, val2, ...rest }) => val1.toLowerCase();

test({
val1: 'Test',
val2: 'other',
o1: 'other',
o2: 'Another'
});

这是一个虚拟函数,它获取一个对象作为参数并将 val1 返回到 LowerCase。所以没什么神奇的。

最佳答案

没那么复杂。它将创建一个排除属性数组,如:['val1', 'val2'] 并将整个对象和排除数组传递给一个函数:

var test = function test(_ref) {
var val1 = _ref.val1,
val2 = _ref.val2,
rest = _objectWithoutProperties(_ref, ["val1", "val2"]);
return val1.toLowerCase();
};

_objectWithoutProperties 的实现是这样的:

function _objectWithoutProperties(source, excluded) {
if (source == null) return {};
// This does the trick
var target = _objectWithoutPropertiesLoose(source, excluded);

var key, i;
// If the object keys were Symbols it will append them too.
// If we don't have any symbols this was unnecessary
if (Object.getOwnPropertySymbols) {
var sourceSymbolKeys = Object.getOwnPropertySymbols(source);
for (i = 0; i < sourceSymbolKeys.length; i++) {
key = sourceSymbolKeys[i];
if (excluded.indexOf(key) >= 0) continue;
if (
!Object.prototype.propertyIsEnumerable.call(source, key)
) continue;
target[key] = source[key];
}
}
return target;
}

最后 _objectWithoutPropertiesLoose 的实现是这样的:

function _objectWithoutPropertiesLoose(source, excluded) {
// if the source object was null so there's nothing to return
if (source == null) return {};

// initialize an empty object to assign values to it later
var target = {};

// get an array of keys from the source object and loop through it
var sourceKeys = Object.keys(source);

var key, i;
for (i = 0; i < sourceKeys.length; i++) {
key = sourceKeys[i];

// THIS IS WHERE IT HAPPENS: if the current key was present on the excluded array, so skip this iteration
if (excluded.indexOf(key) >= 0) continue;

// add the value with that key into the target object
target[key] = source[key];
}

// return the target object
return target;
}

关于javascript - Babel 如何转译 rest/spread 运算符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58388466/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com