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