django-vue3-admin-web/node_modules/xe-utils/helperCreateInInObjectString.js
2025-10-20 21:21:14 +08:00

10 lines
255 B
JavaScript

var objectToString = require('./staticObjectToString')
function helperCreateInInObjectString (type) {
return function (obj) {
return '[object ' + type + ']' === objectToString.call(obj)
}
}
module.exports = helperCreateInInObjectString