All files / src/reactivity utils.js

100% Statements 24/24
100% Branches 5/5
100% Functions 3/3
100% Lines 24/24

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 252x 2x 2x 2x 2x 2x 2x 2x 15x 15x 15x 40x 25x 25x 15x 15x 40x 15x 15x 2x 2x 3x 3x 3x  
/**
 * @template T
 * @template U
 * @param {Iterable<T>} iterable
 * @param {(value: T) => U} fn
 * @returns {IterableIterator<U>}
 */
export function map(iterable, fn) {
	return {
		[Symbol.iterator]: get_this,
		next() {
			for (const value of iterable) {
				return { done: false, value: fn(value) };
			}
 
			return { done: true, value: undefined };
		}
	};
}
 
/** @this {any} */
function get_this() {
	return this;
}