UNPKG
rejoin
Version:
latest (0.0.0)
0.0.0
Another Object/Relational-Mapper
github.com/martinandert/rejoin
martinandert/rejoin
rejoin
/
lib
/
utils
/
hasProp.js
10 lines
(6 loc)
•
160 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
'use strict'
;
var
hasOwnProp =
Object
.
prototype
.
hasOwnProperty
;
function
hasProp
(
obj, key
) {
return
hasOwnProp.
call
(obj, key); }
module
.
exports
= hasProp;