UNPKG

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