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