UNPKG

98 BJavaScriptView Raw
1module.exports = isObservable
2
3function isObservable (obj) {
4 return typeof obj === 'function'
5}