UNPKG

255 BJavaScriptView Raw
1var objectToString = require('./staticObjectToString')
2
3function helperCreateInInObjectString (type) {
4 return function (obj) {
5 return '[object ' + type + ']' === objectToString.call(obj)
6 }
7}
8
9module.exports = helperCreateInInObjectString