projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
f82bd51ed106f2f53deeab9b6b091307ee7a2f8b
[platform/framework/web/crosswalk-tizen.git]
/
1
'use strict';
2
3
var isObject = require('./is-object');
4
5
module.exports = function (value) {
6
if (!isObject(value)) throw new TypeError(value + " is not an Object");
7
return value;
8
};