UNPKG

@instructure/quiz-interactions

Version:

A React UI component Library for quiz interaction types.

8 lines (7 loc) 216 B
// IE11 ignores arguments passed into the Set constructor, // so construct the set from a specified array manually. export default ary => { const set = new Set() ary.forEach(elem => set.add(elem)) return set }