var _setup = require('./_setup.js');
// Internal function for creating a `toString`-based type tester.functiontagTester(name) {
var tag = '[object ' + name + ']';
returnfunction(obj) {
return _setup.toString.call(obj) === tag;
};
}
module.exports = tagTester;