9336fd355a71462e7ae9172706cdd00226afd8c3
[platform/framework/web/crosswalk-tizen.git] /
1 'use strict';
2
3 var isSet = require('./is-set');
4
5 module.exports = function (x) {
6         if (!isSet(x)) throw new TypeError(x + " is not a Set");
7         return x;
8 };