UNPKG

151 BJavaScriptView Raw
1import { mixin } from "../mixin.js";
2const iterable = (prop) => mixin({
3 *[Symbol.iterator]() {
4 yield* this[prop];
5 }
6});
7export {
8 iterable
9};