projects
/
platform
/
framework
/
web
/
crosswalk-tizen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
6937a12ff9eea2f82433e82ff7f282b10c255b31
[platform/framework/web/crosswalk-tizen.git]
/
1
define(['./kindOf'], function (kindOf) {
2
/**
3
* Check if value is from a specific "kind".
4
*/
5
function isKind(val, kind){
6
return kindOf(val) === kind;
7
}
8
return isKind;
9
});