UNPKG

quiz-interactions

Version:

A React UI component Library for quiz interaction types.

18 lines (15 loc) 395 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; // IE11 ignores arguments passed into the Set constructor, // so construct the set from a specified array manually. var _default = function _default(ary) { var set = new Set(); ary.forEach(function (elem) { return set.add(elem); }); return set; }; exports.default = _default;