本文整理匯總了TypeScript中app/utils/rMap.rMap函數的典型用法代碼示例。如果您正苦於以下問題:TypeScript rMap函數的具體用法?TypeScript rMap怎麽用?TypeScript rMap使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。
在下文中一共展示了rMap函數的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: it
it('works for arrays', function() {
assert.deepEqual(
rMap('toString', [42, 'A', true]),
['42', 'A', 'true'],
'returns an array containing the results of the given method call applied to each member'
);
});
示例2: function
this.getData = function() {
return rMap('getData', items);
};
示例3: getOptionTexts
function getOptionTexts(labeledSelectField) {
var optionElements = labeledSelectField.querySelectorAll('option');
return rMap('textContent', optionElements);
}
示例4: function
this.getValue = function() {
return rMap('getValue', valuableChildren);
};