Files
number_zj/20220330_Vote/Ewide.Web.Entry/wwwroot/lib/xe-utils/helperCreateInInObjectString.js
毛财君 197b38ca6f 1
2023-07-06 17:37:33 +08:00

10 lines
246 B
JavaScript

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