UNPKG

@razorpay/blade

Version:

The Design System that powers Razorpay

15 lines (12 loc) 330 B
import { InternSet } from '../../internmap/src/index.js'; function difference(values, ...others) { values = new InternSet(values); for (const other of others) { for (const value of other) { values.delete(value); } } return values; } export { difference as default }; //# sourceMappingURL=difference.js.map