package.internals.classof-raw.js Maven / Gradle / Ivy
The newest version!
'use strict';
var uncurryThis = require('../internals/function-uncurry-this');
var toString = uncurryThis({}.toString);
var stringSlice = uncurryThis(''.slice);
module.exports = function (it) {
return stringSlice(toString(it), 8, -1);
};
© 2015 - 2024 Weber Informatics LLC | Privacy Policy