projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
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
};