aboutsummaryrefslogtreecommitdiff
path: root/node_modules/es6-set/valid-set.js
blob: 9336fd355a71462e7ae9172706cdd00226afd8c3 (plain)
1
2
3
4
5
6
7
8
'use strict';

var isSet = require('./is-set');

module.exports = function (x) {
	if (!isSet(x)) throw new TypeError(x + " is not a Set");
	return x;
};