UNPKG

@razorpay/blade

Version:

The Design System that powers Razorpay

15 lines (12 loc) 287 B
import { InternSet } from '../../internmap/src/index.js'; function union(...others) { const set = new InternSet(); for (const other of others) { for (const o of other) { set.add(o); } } return set; } export { union as default }; //# sourceMappingURL=union.js.map