massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / classof-raw.js
1 var uncurryThis = require('../internals/function-uncurry-this');
2
3 var toString = uncurryThis({}.toString);
4 var stringSlice = uncurryThis(''.slice);
5
6 module.exports = function (it) {
7   return stringSlice(toString(it), 8, -1);
8 };