browsernizr
Version:
Modernizr wrapper for use with browserify
14 lines (11 loc) • 399 B
JavaScript
/**
* Object.prototype.toString can be used with every object and allows you to
* get its class easily. Abstracting it off of an object prevents situations
* where the toString property has been overridden
*
* @access private
* @function toStringFn
* @returns {function} An abstracted toString function
*/
var toStringFn = ({}).toString;
module.exports = toStringFn;