.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / core-js / internals / inspect-source.js
1 var store = require('../internals/shared-store');
2
3 var functionToString = Function.toString;
4
5 // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper
6 if (typeof store.inspectSource != 'function') {
7   store.inspectSource = function (it) {
8     return functionToString.call(it);
9   };
10 }
11
12 module.exports = store.inspectSource;