UNPKG

183 BJavaScriptView Raw
1/* eslint-disable valid-typeof */
2function helperCreateInTypeof (type) {
3 return function (obj) {
4 return typeof obj === type
5 }
6}
7
8module.exports = helperCreateInTypeof